jQuery 修改ID问题?
1个回答
展开全部
先说一下问题吧,
$("#b").click(function(){
$(this).attr({id:"a"});
console.debug("B");
});
没有起作用,因为页面上没有ID为b的。
$("#a").click(function(){
if($(this).attr("id")=="a"){
$(this).attr({id:"b"});
console.debug("A");
}else{
$(this).attr({id:"a"});
console.debug("B");
}
});
这样就对了。
$("#b").click(function(){
$(this).attr({id:"a"});
console.debug("B");
});
没有起作用,因为页面上没有ID为b的。
$("#a").click(function(){
if($(this).attr("id")=="a"){
$(this).attr({id:"b"});
console.debug("A");
}else{
$(this).attr({id:"a"});
console.debug("B");
}
});
这样就对了。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询