测试代码如下:
<a href="https://www.baidu.com">百度<a href="http://www.hao123.com">好123</a></a>但是放到浏览器, 查看源代码 发现结果如下
<a href="https://www.baidu.com">百度</a><a href="http://www.hao123.com">好123</a>
结论: 可以这样写, 但是解析时浏览器自动加上了结束标签
不要这样做
var _lastA = document.createElement('a')document.getElementsByTagName('a')[0].parentElement.appendChild(_lastA )
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)