scratchpad.io函数不起作用

时间:2016-11-30 13:11:10

标签: javascript scratchpad

我正在尝试使用网站scratchpad.io上的功能,但它们似乎不起作用。我已经尝试对按钮使用onclick事件,只是让它在定义后从同一个脚本标记内部调用该函数。有谁知道这是为什么,以及如何解决它?

<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>

1 个答案:

答案 0 :(得分:0)

scratchpad.io适用于HTML&amp; CSS,它不支持javascript。为此,您可以使用其中许多其他类似服务之一,例如:

JSFiddle

JS Bin

CodePen