Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 jsFiddle,我正在尝试测试该jQuery(...)功能
jQuery(...)
<html> <body> <script> var section = jQuery("<div></div>"); $("<p>This is a paragraph</p>").appendTo(section); </script> </body> </html>
为什么这段代码不会自动呈现带有“这是一个段落”的 HTML 页面?
您必须在文档中添加部分。因为它只是在一个变量中。
$('body').append(section);
在此处查看我的示例:
http://jsfiddle.net/9PaTE/
$(document).ready()失踪了,你需要.appendTo('body')
$(document).ready()
.appendTo('body')