我必須交換div。如何更改jQuery中DIV的ID
交換工作正常(我正在使用Jquery交換插件)。 交換後我想交換DIV的ID。
請查找JQuery代碼。請幫助我如何交換DIV ID。
$(".arrowIMG").click(function() {
var arr = this.id.split("_");
if(arr[0] == 'down'){
var div1 = $('#'+'div_' +arr[1]);
var next = (parseInt(arr[1]) + 1);
alert(next)
var div2 = 'div_' + next;
div1.swap({
target: div2,
opacity: "0.5",
speed: 1000,
callback: function() {
//Now Here i want to swap the id of div (div1 and dev2)
}
});
}else if(arr[0] == 'up') {
alert('up');
}
});
請幫助我交換DIV ID的方式。
+1教魚的技能,而不是給魚。 –
是的,它會工作,我換了ID –