jQuery(一)初识
生活随笔
收集整理的這篇文章主要介紹了
jQuery(一)初识
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
jQuery 的功能概括1、html 的元素選取2、html的元素操作3、html dom遍歷和修改4、js特效和動畫效果5、css操作6、html事件操作7、ajax異步請求方式
selector:
操作(DOM)/$(selector).action():
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>菜鳥教程(runoob.com)</title> <script src="https://cdn.staticfile.org/jquery/1.10.2/jquery.min.js"> </script> <script> /*jQuery 入口函數:為了防止文檔在完全加載(就緒)之前運行 jQuery 代碼,即在 DOM 加載完成后才可以對 DOM 進行操作。 $(function(){ });*/ $(document).ready(function(){$(".eilin").click(function(){//$(this).hide(function(){$('p').toggle(1000,function(){alert('i love duzi')});}); }); </script> </head> <body> <p>如果你點我,我就會消失。</p> <p>繼續點我!</p> <p>接著點我!</p> <button class='eilin'>duzi</button> </body> </html> 鏈接(chaining)的技術,允許我們在相同的元素上運行多條 jQuery 命令,一條接著另一條 $(document).ready(function(){$("button").click(function(){$("#p1").css("color","red").slideUp(2000).slideDown(2000);}); });
?
轉載于:https://www.cnblogs.com/eilinge/p/10043363.html
總結
以上是生活随笔為你收集整理的jQuery(一)初识的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C# -- HttpWebRequest
- 下一篇: template里面要做数据渲染,但是数