Js_事件

来源:互联网 发布:图片在数据库中的类型 编辑:程序博客网 时间:2024/04/27 18:08

点击事件

<body><input type="button" value="点我" onclick="acert("button");" /><a href="javascript:alert('hello')">点击我显示Hello</a>//超链接的href中加入js才需要加"javascript:",因为他不是事件,而是把“javascript:”看成像“http:”、“ftp:”一样的网络协议<a href="无效.html" onclick="alert('hello2')">点我显示hello2</a>//先触发onclick,再导向至无效.html</body>


原创粉丝点击