码迷,mamicode.com
首页 > Web开发 > 详细

JQuery使用笔记

时间:2017-10-31 12:56:00      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:.text   att   function   url   text   .post   htm   .ajax   attr   

1.选择器

  id选择器:  $(‘#btnShow‘)

  class选择器:  $(‘.banner‘)

  tag选择器:  $(‘input‘)

2.常用方法

  取 / 设value: $(‘#btnShow‘).val()  / $(‘#btnShow‘).val(‘sss‘)

  取 / 设text:  $(‘#btnShow‘).text() /  $(‘#btnShow‘).text(‘sss‘)

  取 / 设innerHtml  $(‘#btnShow‘).html() /  $(‘#btnShow‘).html(‘sss‘)

  取 / 设style  $(‘#btnShow‘).css(‘color‘) /  $(‘#btnShow‘).css(‘color‘, ‘red‘)

  取 / 设attrbute   $(‘#btnShow‘).attr(‘name‘) /  $(‘#btnShow‘).attr(‘name‘, ‘sss‘)

3.ajax

  $.get(url, function(returnData) {

  //do something

  });

 

  $.post(url, {name:‘aaa‘, account: ‘hehe‘}, function(returnData) {

  //do something

  });

 

JQuery使用笔记

标签:.text   att   function   url   text   .post   htm   .ajax   attr   

原文地址:http://www.cnblogs.com/gz-fenglang/p/7760755.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!