码迷,mamicode.com
首页 > 编程语言 > 详细

JavaScript例子1-给网页中所有<p>元素添加onclick事件

时间:2017-08-06 16:59:08      阅读:242      评论:0      收藏:0      [点我收藏+]

标签:body   doctype   nload   back   onload   har   元素   测试   document   

 1 <!DOCTYPE html>
 2 <html>
 3 
 4     <head>
 5         <meta charset="utf-8" />
 6         <title></title>
 7         <script type="text/javascript">
 8             window.onload = function() {
 9                 var items = document.getElementsByTagName("p");
10                 for(var i = 0; i < items.length; i++) {
11                     items[i].onclick = function() {
12                         alert("suc!");
13                     }
14                 }
15 
16             };
17         </script>
18     </head>
19 
20     <body>
21         <p>测试1</p>
22         <p>测试2</p>
23 
24     </body>
25 
26 </html>

 

JavaScript例子1-给网页中所有<p>元素添加onclick事件

标签:body   doctype   nload   back   onload   har   元素   测试   document   

原文地址:http://www.cnblogs.com/ZHOUVIP/p/7295010.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!