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

js中常见命令

时间:2019-03-14 10:34:04      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:function   json   article   元素选择器   str   ul li   targe   type   html   

元素选择器:

xx.html
<input id="usernameID" class="usernameCLASS" name="usernameNAME" >
xx.js
function(){
    var username= $("#usernameID").val();
    var username= $(".usernameCLASS").val();
    var username= $(‘input[name="usernameNAME"]‘).val();
}

ajax请求:

$(function(){
    $(‘#send‘).click(function(){
         $.ajax({
             type: "get",
             url: "***/***",
             data: { username:"superslow" },
             dataType: "json",
             success: function(data){

             },
             error:function() {

             }
         });
    });
});      

Ajax向java后台中传值为数组时,后台接收不到(为null)的问题

列表节点选择遍历

$(‘ul li‘).remove();
$(‘ul li‘).each(function(){
    $(this).remove();
}); 
$("ul").find("li").remove(); 
$(‘ul‘).children().filter(‘li‘).remove();

 

js中常见命令

标签:function   json   article   元素选择器   str   ul li   targe   type   html   

原文地址:https://www.cnblogs.com/superslow/p/10528494.html

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