成都创新互联网站制作重庆分公司

ajax+jquery基本

ajax格式,(key:value,)value值用单引号括起来

成都创新互联主营岳阳网站建设的网络公司,主营网站建设方案,成都App制作,岳阳h5小程序开发搭建,岳阳网站营销推广欢迎岳阳等地区企业咨询

$.ajax({

type:,      //'post','get'

url:,        //action的路径

data:,    //传到后台的参数,多个参数的连接符为'&'

success:function(msg){}//对返回的JSP页面或结果进行处理

});

1)jsp:


       
 

<%--  

 --%>
                         

 

2)Javascript:

data的值表示把页面的值传到后台(/GetSN.action),多个参数的连接符为'&'

执行成功后把结果放到一个JSP页面(ajaxSN.jsp),通过 success:function(msg),放到ID为'div_sn'

function getsn(){  
              document.getElementById("div_sn").style.display="block";
              var sn = $('#sn').val();
              var product=$('#product').val();
              if(sn.length>5){    
                    $.ajax({
                        type:'post',
                        url:'<%=request.getContextPath()%>/GetSN.action',
                        timeout:2000,
                        data:'sn='+$('#sn').val() +'&product='+$('#product').val(),
                        success:function(msg){
                          $("#div_sn").html(msg);
                        }
                    });
                  }
            }

 

3)ajaxSN.jsp

 


    
        
        JSP Page
        

.DivSelect
{
     position: relative;
     background-color: transparent;
     width: 135px;
     overflow: hidden; /*隐藏了小三角,因为宽度为110px,而select宽度为130px*/
     border-width:0px;
     border-top-style: none; 
     border-right-style: none; 
     border-left-style: none; 
     border-bottom-style: none;
}

/*设置Select样式*/
.SelectList
{
     position: relative;
     background-color: transparent;
     border-width: 0px;
     border-top-style: none; 
     border-right-style: none; 
     border-left-style: none; 
     border-bottom-style: none;
     width:155px;
     display:block;
     overflow:hidden;
}


    
    
        
           
            ${sn}
             
                 ${char} 
             
        
        


    

 


本文题目:ajax+jquery基本
路径分享:http://cxhlcq.com/article/pgsodh.html

其他资讯

在线咨询

微信咨询

电话咨询

028-86922220(工作日)

18980820575(7×24)

提交需求

返回顶部