我動態添加一個按鈕,在HTML象下面這樣: 該按鈕的點擊我要調用一個JavaScript函數:添加onclick事件來動態添加按鈕?
var but = document.createElement("button");
but.value="delete row";
but.setAttribute("onclick","callJavascriptFunction()");
//this is not working
but.onclick="callJavascriptFunction()"
//this is also not working
document.getElementById("but").onclick="callJavascriptFunction()"
//this is also not working
but.id="but"+inc;
是否有解決這個任何方式?? plz幫助我,謝謝 提前
它的工作....非常感謝:) – sanjeev
花花公子一切都OK ..但我無法通過concatinating字符串給出ID:但是和inc ... Plz help ......「但是' + inc +'「這不起作用 – sanjeev
嘗試:span.firstChild.setAttribute(」but「+ inc);在span.innerHTML之後,我也假定inc是一個變量,並且在使用它之前必須設置它。讓我知道它仍然不適合你。 – jerjer