XIYUETA.COM
源代码:
点击运行
<script src="../dist/xiyueta.min.js?v31"></script> <script> /* .parse() 解析HTML .print() 打印匹配元素集中第一个元素的HTML内容 format为格式化HTML */ var html = "<body>aaa<div>xiyueta<div>\n作者<div style='color:red'>小云\n</div></div></div><div>网址:xiyueta.com</div>bbbb</body>" $().parse(html); //解析html // console.log($().print("format")); //浏览器控制台输出 undefined $.log($.html()); //$().printall() //相等 document.write("<br>") document.write($("div:eq(1)").print("format|color")); document.write("<br>") $.log($().print("format")); // 返回undefined 之前为打印全部html 等于 $().printall() 改为这种 </script>
运行结果