想通过onclick='test'
调用函数,发现如下问题,求证。
场景一:可以正常执行
<script>$(function($){ function test(){ console.log('123'); } });</script><button onclick='test()' >adadas</button>
场景二:test:34 Uncaught ReferenceError: test is not defined
<button onclick='test()' >adadas</button><script>$(function($){ function test(){ console.log('123'); } });</script>
问题:如果想用onclick='test()',只能 先把 函数写在 需要调用的元素之前吗?
浮云间
相关分类