大家好,感谢您的关注。
当我单击更新按钮时,我试图调用一个 javascript 函数。
这是javascript
var text2Array = function() {
// takes the value from the text area and loads it to the array variable.
alert("test");
}
和html
<button id="update" onclick="text2Array()">Update</button>
如果您想查看所有代码,请查看此 jsfiddle http://jsfiddle.net/runningman24/wAPNU/24/
我试图使函数全局化,但运气不好,我可以从 html 获取警报,但由于某种原因它不会调用函数???