问题描述
<script type=“javascript”>function test(){}</script><input type="button" onclick="test()" />我现在要在test方法中获得onclick事件对象,怎么获得啊
解决方案
<script type=“javascript”> function test(){ ev = arguments[0] || window.event;} </script> <input type="button" onclick="test()" />
解决方案二:
<script type=text/javascript> function test(e){ alert(e);} </script> <input type="button" onclick="test(event)" />
时间: 2024-11-16 22:03:06