这是小提琴:
HTML:
<html>
<body>
<input type="button" value="button" onclick="test()" />
</body>
</html>
JavaScript:
function test() {
alert('hi');
}
正如预期的那样,它没有提醒数据!
这是小提琴:
HTML:
<html>
<body>
<input type="button" value="button" onclick="test()" />
</body>
</html>
JavaScript:
function test() {
alert('hi');
}
正如预期的那样,它没有提醒数据!
抛弃 html 和 body 标签,从 onload 更改为 nowrap。见http://jsfiddle.net/5UXkA/5/
我发现的问题在小提琴中。当你的小提琴调用它时,你的函数test()
没有定义。
我将您的 javascript 放在 html 中的新头标签中,它可以正常工作。出于使用小提琴的目的,只需使用 ' onDomReady
' 而不是onLoad
.
http://jsfiddle.net/5UXkA/10/