这是我需要调用的功能
function printExpectationReport(Interest, Influence) {}
A和B是两个字符串变量,当我点击它时,控制台会给出错误,因为A和B没有定义。
如果有人知道我应该如何绑定字符串的变量。 这将非常有帮助。
TableData += "<div class='count-expectation'><a onclick='printExpectationReport("+A+","+B+") href='#'>" + arrayFound.length + "</div>";
答案 0 :(得分:1)
这样做
var a = 'something';
var b = 'something else';
$(document).on('click', 'a', function (e) {
e.preventDefault();
printExpectationReport(a, b);
});
另外请记住,动态添加到文档中的元素上的绑定事件应该使用我在上面提供的on()
语法来完成。