我有一个动态按钮,当满足 JavaScript 中的条件时加载。当按钮加载时,我需要调用一个函数(ClickMe),只要我单击按钮就可以工作。
现在的问题是我无法将功能与按钮相关联。
在我的代码中
var showthelocation = "";
showthelocation += '<li>';
if (data.location == 'Sydney'){
showthelocation += "</br><button class=\"" + ClickMe + "\">Show</button>";
}
showthelocation += '</li>';
function ClickMe("Click"){
//Some Code
};
$(".showthelocation").html(showthelocation);
和 HTML
<ul class="showthelocation"></ul>
我想放置一个 ID 或 Class 以从 ClickMe 功能访问它,但无法做到。有什么帮助吗?