小编典典

Why does this simple JSFiddle not work?

html

There is some code I wanted to put into JSFiddle. It didn’t work. Narrowing it
down I can’t even get this simplest of code to work:

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>

The alert box doesn’t show up in the JSFiddle.


阅读 278

收藏
2020-05-10

共1个答案

小编典典

http://jsfiddle.net/praveen_prasad/XNJxT/14/

Js fiddle so something like this to whatever you write

window.addEvent('load',function(){

//Your code


});

enter image description here

2020-05-10