首页 > Web开发 > 详细

Jquery学习(表单-Button)-----jQuery1.4.2

时间:2016-04-06 20:14:59      阅读:228      评论:0      收藏:0      [点我收藏+]
 1 <html>
 2 <head>
 3 <base href="<%=basePath%>">
 4 
 5 <title>My JSP ‘jquery.jsp‘ starting page</title>
 6 
 7 <meta http-equiv="pragma" content="no-cache">
 8 <meta http-equiv="cache-control" content="no-cache">
 9 <meta http-equiv="expires" content="0">
10 <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
11 <meta http-equiv="description" content="This is my page">
12 <script type="text/javascript" src="/common/easyui/jquery.min.js"></script>
13 <script type="text/javascript">
14     $(document).ready(function(){
15     $(":button").css("color","blue");
16     });
17 </script>
18 
19 </head>
20 <body>
21 <form>
22   <input type="text" />
23   <input type="checkbox" />
24   <input type="radio" />
25   <input type="image" />
26   <input type="file" />
27   <input type="submit" />
28   <input type="reset" />
29   <input type="password" />
30   <input type="button" />
31   <select><option/></select>
32   <textarea></textarea>
33   <button>MyButton</button>
34 </form> 
35 
36 </body>
37 </html>

技术分享

                                效果图1-1

重点解释:

$(":button"):查找所有按钮

 

Jquery学习(表单-Button)-----jQuery1.4.2

原文:http://www.cnblogs.com/2296bbs/p/5360912.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!