KISSY 遍历

 1 <!DOCTYPE HTML>
2 <html lang="en">
3 <head>
4 <meta charset="GBK" />
5 <title></title>
6 <style type="text/css">
7 </style>
8 <script type="text/javascript" src="kissy.js"></script>
9 <script type="text/javascript">
10 KISSY.ready(function(S){
11 S.one("#btn").on('click',function(){
12 S.all("#div a").each(function(value,key){
13 value.html("kye="+key);
14 });
15 });
16 });
17 </script>
18 </head>
19 <body>
20 <input type="button" value="Test" id="btn" />
21 <div id="div">
22 <a href="http://www.baidu.com">百度</a>
23 <a href="http://www.baidu.com">google</a>
24 </div>
25 </body>
26 </html>
posted @ 2011-10-23 16:28  sirzxj  阅读(282)  评论(0编辑  收藏  举报