我想将一些代码放入 JSFiddle。它没有用。缩小范围,我什至无法让这个最简单的代码工作:
function displaymessage() {
alert("Hello World!");
}
<form>
<input type="button" value="Click me!" onclick="displaymessage()" />
</form>
<p>By pressing the button above, a function will be called. The function will alert a message.</p>
该alert
框未显示在 JSFiddle 中。