我已經動態在我的JavaScript創建文本框,問題是在動態創建的文本框,我需要爲我是新來的JavaScript日期選擇動態文本框
使用日期選擇器好心幫 感謝
row_no4=0;
var index=1;
function addRow_otherschsp(tbl4,row5){
var textbox3a = '<input type=\"text\" size = \"10\" maxlength= \"10\" name=\"othrFA3'+tick+'\" id=\"othrFA3'+tick+'\" placeholder=\"dd/mm/yyyy\" >';
var newRow = tbl4.insertRow(row_no4);
var newCell = newRow.insertCell(0);
newCell.innerHTML = label3;
var newCell = newRow.insertCell(1);
newCell.innerHTML = "From "+textbox3a+ "To &`enter code here`nbsp;"+ textbox3b;
row_no4++;
}
你可以嘗試'setTimeout(function(){$('input [name =「othrFA3 *」]')。datepicker(); },0);'在關閉你的上面的函數之前。 –