html注册事件向js引用方法传递参数,主要有两种方式。
代码如下,大家研究下:
<html> <head> <script> function bbb(event){ event = window.event || event; var srcEle = event.target || event.srcElement; alert(srcEle.value); } function ccc(cc){ alert(cc.value); } </script> <title>html向js方法传递参数-www.jb200.com</title> </head> <body> <input type="text" value="event方式" onblur="bbb()"/> <input type="text" value="对象传递方式" onblur="ccc(this)"/> </body> </html>