0
我想使用網站scratchpad.io上的函數,但它們似乎不起作用。我曾嘗試使用按鈕的onclick事件,並在定義後從同一個腳本標記中調用該函數。有誰知道這是爲什麼,以及如何解決它?scratchpad.io函數不起作用
<script>
function Message(){
alert("scratchpad.io does not work with functions... You won't see this!");
console.log("scratchpad.io does not work with functions... You won't see this!");
}
Message();
</script>
<br>
<button onclick="Message();">Trigger Function</button>