我写了简单的javascript和HTML事件:
<button class="btn btn-danger pull-right" onclick="removetopic(this)">del</button>
和javascript:
function removetopic(ele) {
alert("ddd");
return 0;
}
您可以看到代码here
但在我的firefox 29.0.1(firebug)中运行它。它总是从控制台给我错误:
ReferenceError: removetopic is not defined
我想我用触发事件定义相同的名称onclick为什么没有定义函数?
答案 0 :(得分:0)
它工作正常..你的代码中包含jquery .. 检查这个http://plnkr.co/edit/SiRd0IhUISPVvwXaejpl?p=preview 它是相同的代码,它工作得很好。