基本上我需要找到网站中的每个元素,其中有一个特定的节点值。为每个添加一个 .roll 类,并在节点内添加一个新的。
这是我想做的一个例子,什么是错的:http: //jsfiddle.net/7Zuax/2/
HTML:
<a href="#">link 1</a>
<a href="#">link 2</a>
<a href="#">link 3</a>
<a href="#">link 4</a>
CSS:
.red {
background: red;
}
JS:
// add .red to each <a> element
$('a').addClass('red');
// add a new <span> child into each found <a> element, but with the current <a>'s html();
$('a').html("<span data-title="+$('a').text()+">"+$('a').html()+"</span>");
// Why does all of the links have 'link 1' instead of 'link 1...2...3...4' ? ---->
结果:链接 1 链接 1 链接 1 链接 1