我想改变jquery中元素的id,即
$('.aiButton').click(function(){
$('.aiButton').id('saveold');
<a class="aiButton" id="savenew" href="login.php"><span>Save</span></a></li>
你知道我想把这个id从savenew变成saveold
这就是你怎么做的,我想这就是谢谢!!
答案 0 :(得分:7)
我这样做:
$('.aiButton').click(function()
{
// $(this).removeAttr('id');
$(this).attr('id', 'id-name-goes-here');
});
答案 1 :(得分:7)
要设置ID,您需要$('.aiButton').attr('id', 'saveold');
,或者在这种情况下this.id = 'saveold'
更有效。