Home  >  Article  >  Web Front-end  >  JQuery Study Notes Study Notes (1)_jquery

JQuery Study Notes Study Notes (1)_jquery

WBOY
WBOYOriginal
2016-05-16 18:22:021090browse

1. 使用jquery
  到jquery.com下载jquery.js当前版本是1.4.2
  新建一个html页面

复制代码 代码如下:




  
  
   


   http://jquery.com/">jQuery



代码解释:
  $(document).ready(function(){...})在页面加载完时添加function()函数内容
  $("a").click(function(event){...})设置a标签的click事件函数
  event.preventDefault()阻止原事件执行
  代码功能:点击标签只弹出alert信息后,页面并不跳转到http://jquery.com/。
2. 添加和移除HTML class
  首先在中添加一些样式,例如:
复制代码 代码如下:



在script中使用addClass和removeClass来添加和移除HTML class,例如:
复制代码 代码如下:

$("a").addClass("test");//所有a标记粗体
$("a").removeClass("test");//取消所有a标记粗体

3.特效
  jQuery提供了一些非常方便的特效
复制代码 代码如下:

$("a").click(function(event){
event.preventDefault();
$(this).hide("slow");
});

点击标签后,标记慢慢消失
4.回调与函数
  无参数回调
复制代码 代码如下:

$.get('myhtmlpage.html', myCallBack);

带参数回调
复制代码 代码如下:

$.get('myhtmlpage.html', function(){
myCallBack(param1, param2);
});
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn