我正在使用reg-ex(div.rc> .r> a)从html获取div的锚点。使用setAttribute方法设置reg-ex匹配元素的属性。当我尝试将值添加到锚标记时,它显示对象HTMLAnchorElement]没有方法'attr'。任何人都可以告诉我如何使用prependTo()方法将html添加到锚点。
var pattern = "div.rc > .r > a";
$(pattern, document).each(function() {
g(this);
});
function g(f){
console.log(f.getAttribute("href"));
var header = "<h2>sdfds fdsj fjds jfd s</h2>";
header.prependTo(f);
}
感谢。
答案:
$('<h2>sdfds fdsj fjds jfd s</h2>').prependTo(f);