要设置不带src的iframe的内容,请使用jQueryhtml()
方法。您可以尝试运行以下代码,以了解如何设置不带src属性的iframe的内容-
<html> <head> <title>jQuery Selector</title> <script src = "https://cdn.staticfile.org/jquery/3.2.1/jquery.min.js"> </script> <script> $(document).ready(function() { var context = $('iframe')[0].contentWindow.document; var $body = $('body', context); $body.html('Hello World!'); }); </script> </head> <body> <iframe style="border-style: dotted;"></iframe> </body> </html>