0

我通过使用这样的for循环来动态填充html

function htmlpopulate() {
  /*some DOM manipulations*/
  setInterval(loadhtml, 5000); //getting live data
}

function loadhtml {
  activediv.innerHTML = '';
  for (i = 0; i < userarray.length; i++) {
    var temp = userarray[i].trim();
    activediv.innerHTML += '<p onclick="makecall(' + "'" + temp + "'" + ');return false;")">' + temp + '</p><br/>';
  }
}

function makecall(data) {
  console.log(data);
}

输出:未定义 makecall
如何使内联函数调用该定义的函数?

4

3 回答 3

2

function makecall必须在全局上下文中定义:

window.makecall = function (data) {
  console.log(data);
};

此外,您需要整理中的引号和括号

activediv.innerHTML += '<p onclick="makecall(' + "'" + temp + "'" + 
  ');return false;")">' + temp + '</p><br/>';

你不需要)"返回 false;" .

于 2015-11-04T14:52:14.217 回答
1

以下是JSFiddle表示具有单击功能的动态创建的按钮。

如果您无法绑定功能,您也可以试试这个:

document.getElementById("btnID").onclick = makeCall;

代码

function createHTML(){
    var div = document.getElementById("content");
    var _html = "";
	for(var i=0; i<5;i++){
    	_html += "<button onclick='notify("+i+")'>btn " + i +"</button>";
    }
    div.innerHTML = _html;
}

function notify(str){
	console.log("Notify" + str);
}


function print(data) {
	console.log(data);
}

function registerEvent(){
    var btnList = document.getElementsByTagName("button");
	document.getElementById("btnID").onclick = function(){ print(btnList) };
}

(function(){
	createHTML();
    registerEvent();
})()
<div id="content"></div>
<button id="btnID">BTN ID</button>

于 2015-11-03T18:07:33.113 回答
0

在那里,您正在定义makecall(),但您需要在之后实际调用它,如下所示:

makecall(the data you want to use);

于 2015-11-03T18:02:34.947 回答