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

JQuery常用代码汇总

时间:2016-11-06 16:17:58      阅读:178      评论:0      收藏:0      [点我收藏+]

标签:end   jquer   user   隐藏   strong   bre   function   show   each   

获取<input />的value

 

$("#id").val( );

 

 

标签间的html

$("#id").html(‘<tr><td>aaa</td> </tr>‘);

 

隐藏/显示

$("#id").show();  

$("#id").hide();

 

去字符串的前后空格

  $.trim(str);

 

ID=con标签内的html的追加

$("#con").append(‘<tr><td>line</td> </tr>‘);

 

遍历#con下的所有class为“code”的元素

$("#con  .code").each(function(){
  value = $.trim(  $(this).val()  );
 }

 

Ajax代码

     $.ajax({
          type:‘get‘,
          data:"userid="+userid +"&cdkey="+cdkey,
          url:"http://www.xxxx.com/gift_ajax.php",
          dataType:‘html‘,
          error:function(){
                  alert("error");     
          },
          success:function(data){
          
              switch(data){
                case "no_user":
                alert("没有此用户!");
                break;
                
                case "none_or_used":
                alert("CDKEY不存在或已被使用!");
                break;    
                                
                default:
                alert(data);    
            }
          
            }
       });    

 

JQuery常用代码汇总

标签:end   jquer   user   隐藏   strong   bre   function   show   each   

原文地址:http://www.cnblogs.com/roluce/p/6035196.html

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