我想要做的,當點擊我的頁面上的一個按鈕一些行動執行的,但我的功能,無需點擊按鈕,執行和當我檢查使用Firebug我有「取消定義」消息日誌。以下是我的代碼片斷。我的onclick JavaScript函數得到不點擊
var email = [email protected]
"<button class='btn btn-warning' onclick ='"+addNote(email)+"' >Add Note</button>"
function addNote(youremail){
alert("Your email is "+ youremail);
}
通過上面的代碼片段,輸出將是您的電子郵件地址是[email protected]。
看到這個職位:http://stackoverflow.com/questions/9643311/pass-string-parameter-in-an-onclick-function。你的代碼實際上調用了addNote函數,而不是將它插入到HTML中。 – maxedison