我有一個Java腳本文件,如下圖所示。
在這個文件中,我爲我的網頁創建了一個html代碼,並且在這個html中,我調用了在Java腳本文件中定義的函數 。 但是,當我運行它,我得到的功能沒有定義。
附加信息:在動態創建的html中調用javascript函數
加提到( 「C按鈕」)的功能在Java腳本文件中的另一個函數的定義。
(function() {
var thecid = 0;
function cButton (ii) {
document.getElementById(ii).style.display = 'none';
alert('fdgfg');
}
$("#subber").on("click", function() {
var thelm = "#c0"+thecid;
var newcommhtml = '<div id="c0' + thecid + '" class="cnew clearfix">';
var ii='c0'+thecid;
newcommhtml += '<section class="c-content">';
newcommhtml += '<a href="#" onclick="cButton(\'' + ii + '\');" style="color:black;">x</a>';
newcommhtml += '<p>' + nl2br(textval) + '</p> </section></div>';
});
})()
爲什麼代碼的圖片,而不是代碼本身? – techfoobar
請把代碼而不是圖片 –
對不起,我認爲它更舒服 –