您好,我想将JavaScript函数放在onclick html中,因为我的页面上有一些练习
<button type="button" onclick="formatTime()">Click</button>
答案 0 :(得分:0)
您的按钮应调用javascript函数formatTime()onclick,HTML没错。 Chrome / Firefox开发者控制台在点击时是否输出任何错误? 有关示例,请参见here。
<button type="button" onclick="foo()">click</button>
<script>
function foo() {
alert('hello world');
}
</script>