更新克隆元素的ID是否存在問題?我認爲我的語法在這裏是正確的,但它沒有更新。JQuery,不能更改克隆元素的ID?
function addQuestion(){
// Clone the first question Container and give it a new ID
$('#questionContainer0').clone().attr('id','questionContainer'+currentQuestion).appendTo('#questionArea');
// Assign the new ID to the text area field (This is not working)
$('#question0').attr('id','asdasd');
var test = $('#question0').attr('id');
alert(test);
}
Question0是原始的克隆questionContainer0(DIV)的子元素(文本域)
嗨加比,謝謝,所以你顯示的語法允許我指定父元素作爲選擇器中的第二個參數? –
嗯,仍然沒有骰子 - 發佈時的表單域都命名爲question0。 –
我驗證了questionContainer ID確實在更改,但問題0沒有。我們確定jQuery每次都克隆了question0的ID嗎? –