对IE6的bug我需要改变一些Jquery,
我想将一个名为#nav,
的元素附加到ID
。
我已使用addClass
创建<div id="#nav" class="test">
$('span .breadcrumb').each(function(){
$('#Nav').addClass($(this).text());
其中包含痕迹导航文本并将其作为新类添加到
我可以使用.append
将文字添加到ID吗?
答案 0 :(得分:4)
只需更改id属性:
$('#nav').attr('id','nav' + appendString);
appendString
包含您想要追加的内容。
答案 1 :(得分:2)
追加添加元素的内容,而不是其属性。要做你想做的事,我会使用以下内容:
$('#nav').attr('id', 'nav' + 'appendedString');
答案 2 :(得分:1)
它应该有用。
$(this).attr('id', $(this).attr('id') + $(this).text() );
或者你需要做什么。