XIYUETA.COM
源代码:
点击运行
<script src="../dist/xiyueta.min.js?v31"></script> <script> /* .parse() 解析HTML $.load() 加载并解析html,与cheerio库里使用一致 .html() 获取匹配元素集中第一个元素的HTML内容,或设置每个匹配元素的HTML内容 .htmlwrap() 获取匹配元素集中第一个元素的HTML内容和外包裹,或设置每个匹配元素的HTML内容和外包裹 $.log() 在浏览器里显示内容 == document.write() .print() 打印HTML对象全部内容 */ var html = '<div><p>xiyuetaJS库</p></div>'; $.load(html); $.log($("div").html()); $.log($("div").parse(html).html()); //解析html后获得元素内容 简单快速方法 var html = '<div>\n\ <ul>\n\ <li>xiyueta库</li>\n\ <li>xiyueta.com</li>\n\ <li></li>\n\ </ul>\n\ </div>'; $("li:eq(-1)").parse(html).html("author:<b>xiyueta</b>"); $.log($("ul").html()); document.write("<br>"); $.log($("li").htmlwrap()); document.write("<br>"); $("ul").htmlwrap("xiyueta.com") $.log($().print()) </script>
运行结果