contents()方法查找所选元素内的所有子节点(包括文本节点)。
如果iframe在同一域中,则content()方法还可用于获取iframe的内容文档。
content()方法类似于children()方法,不同之处在于它也返回文本和注释节点。
$(selector).contents()
找到<p>元素内的所有文本节点,并将它们包裹在<b>元素内:
$("button").click(function(){ $("p").contents().wrap("<b></b>"); });测试看看‹/›