法「HTML」我想使用jQuery遺漏的類型錯誤:無法調用未定義
$("#AddMobile").click(function() {
var newTextBoxDiv = $(document.createElement('div')).attr("id", 'MobileDiv' + counter);
newTextBoxDiv.after().html('<input type="text" id="Mobile' + counter + '"/>' +
'<input type="button" id="DeleteMobile+' + counter + '" class="DeleteMobile" Value="Delete"/>');
newTextBoxDiv.appendTo("#TextBoxesGroup");
counter++;
});
創建一個動態的形式,當我點擊添加按鈕我從控制檯 得到這個錯誤"Uncaught TypeError: Cannot call method 'html' of undefined"
它是一個圖書館問題?我怎麼知道這個函數屬於哪個庫? 非常感謝
爲什麼你不帶參數調用'.after()'? – 2012-03-21 11:21:21
'after'期待一個參數:http://api.jquery.com/after/,我不確定它是否可以工作,因爲'newTextBoxDiv'尚未添加到文檔中。 – 2012-03-21 11:21:45
我寧願使用.append而不是after(),似乎我所遵循的示例沒有經過測試 – Yasminette 2012-03-21 11:30:35