複製された要素の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)の子要素(テキストエリア)
こんにちは、ありがとう、私はあなたがセレクタの2番目のパラメータとして親要素を指定できるように表示されている構文ですか? –
うーん、ダイスはまだありません。投稿時のフォームフィールドの名前はすべてquestion0です。 –
コンテナIDは実際には変更されますが、質問0は検証されません。 jQueryが毎回question0のIDをクローンしていると確信していますか? –