我想要去掉<a href="http://bac.com"></a>只留下<我是a标签里的内容>这个怎么写
最好在外面加多个div也行
看你怎么做,如果用JQUERY,一句解决。
Jquery
var aText = $("#sc a").html(); alert(aText);
javascript
var divText = document.getElementById("sc").innerText; alert(divText);
刚注册的帐号,请测试代码。
我不要提取他的inerText,我要的是直接写代码把他的<a href="http://bac.com"></a>去掉
支持1楼
可以用 regex 做替换 var patt1 = /<a href=\"(.*)\">(.*)<\/a>/
支持楼上,正则替换
还需要连接吗?
不需要了
var inner = $("#testA").html();
$("#testA").replaceWith("<div id='test'>" + inner + "</div>");