日期:2014-05-16  浏览次数:20456 次

谁能给我点JavaScript中时间传参数的例子,谢谢!
例如:onmouseover、onmousemove,以及添加监听事件attachEvent等。谢谢!

------解决方案--------------------
时间传参数的例子? 什么意思? 是实现传参数?
HTML code
<input type="button" id="btn" onmouseover="this.style.color='red';" onmouseout="this.style.color='blue';" value="原来无事件"/>

<script type="text/javascript">
    document.getElementById('btn').attachEvent("onclick",function(){alert('现在有事件');});
</script>