我想添加一個Jquery日曆選取器在創建時的文本框,但我無法找到如何。添加日曆datepicker與動態表上的jquery
當我按下一個按鈕,它會創建一個表,我要附加Jquery的日曆選取的元素是:
var txtDate = createTextInput(i, "txtDate", 8, 10);
txtDate.className = "datepicker";
this.newcells[i].appendChild(txtDate);
我試圖在最後補充道:
txtDate.datepicker();
但不起作用。任何人都可以幫忙嗎?
謝謝。
注:CreateTextInput是:
function createTextInput(i, strName, size, maxLength) {
var input = document.createElement('<input>');
input.type = "text";
input.name = strName;
input.id = strName + i;
input.size = size;
input.maxLength = maxLength;
return input;
}
謝謝到@Matti,@亞歷山大和@Rahul,但你的答案目前還沒有解決我的問題。 我不知道我在哪裏放置那條線它不是正確的地方。 有人可以告訴我在哪裏放$(txtDate).datepicker(); ? 我在this.newcells [i] .appendChild(txtDate)之後添加它。 謝謝。 – Amra 2010-04-13 10:36:47
如果txtDate是你的文本框的ID,那麼你必須這樣寫代碼:$(「#txtDate」)。datepicker();' – rahul 2010-04-13 11:16:38