首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > JavaScript >

js统制onclick事件实例

2012-11-23 
js控制onclick事件实例htmlhead/headbodybutton ida1点击/buttonscriptfunction test(){

js控制onclick事件实例

<html><head>   </head><body><button id="a1">点击</button><script>function test(){document.getElementById("a1").onclick=function(){alert('this is a1');};//下面这种写法是不对的//document.getElementById("a1").onclick="alert('this is a1');";}test();</script></body></html>
?

?

热点排行