函数在onload中工作但不是onclick

时间:2017-03-06 11:58:06

标签: javascript

网页的这个死的简单存根将执行translate()中的onload功能,但不会执行按钮onclick中的function createSvgDef() { console.log("createSvgDef()"); } function translate() { console.log("translate()"); }功能。它反而抛出" Uncaught TypeError:translate不是函数"。

我犯了什么简单的错误?



<html>
<head>
    <link rel="stylesheet" href="this-thing.css"/>
    <script type="text/javascript" src="this-thing.js"></script>
</head>
<body onload="createSvgDef(); translate();">
    <textarea id="input">Hello World!</textarea>
    <button onclick="translate();">Translate</button>
    <div id="output"></div>
</body>
</html>
&#13;
File::makeDirectory(public_path('storage/newdirectory'));
&#13;
&#13;
&#13;

0 个答案:

没有答案