h5、jquery 。个库CDN

<body onload=" ">是在页面所有元素(包括html标签以及引用到得所有图片,Flash等媒体)加载完毕后执行的,

$(document).ready(function(){})  替换为$(function)

是文档结构已经加载完成(不包含图片等非文字媒体文件),不必等到所有的加载完毕.<body onload=" ">和$(function)不能同时使用

CDN:

菜鸟教程   <head> <script src="http://cdn.static.runoob.com/libs/jquery/1.10.2/jquery.min.js"> </script> </head>

百度<head> <script src="https://apps.bdimg.com/libs/jquery/2.1.4/jquery.min.js"> </script> </head>

又拍云<head> <script src="http://upcdn.b0.upaiyun.com/libs/jquery/jquery-2.0.2.min.js"> </script> </head>

新浪<head> <script src="http://lib.sinaapp.com/js/jquery/2.0.2/jquery-2.0.2.min.js"> </script> </head>

谷歌<head> <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js"> </script> </head>一般不使用,因为谷歌在中国不稳定

Microsoft  <head> <script src="http://ajax.htmlnetcdn.com/ajax/jQuery/jquery-1.10.2.min.js"> </script> </head>

jquery格式:

  • $(this).hide() - 隐藏当前元素

  • $("p").hide() - 隐藏所有 <p> 元素

  • $("p.test").hide() - 隐藏所有 class="test" 的 <p> 元素

  • $("#test").hide() - 隐藏所有 id="test" 的元素

posted on 2017-07-16 17:05  长大了吗  阅读(641)  评论(0编辑  收藏  举报