easyui+jquery 제출form 폼 jquery submit 실효

1616 단어 jspjavascript






userLoginPage


	$(function() {
		$('#p').panel({
			width : 270,
			height : 150,
			title : '    ',
		}); 
		$("#loginbtn").click(function() {
			 $("#loginf").submit(function() {
				alert("111");
				 $(this).ajaxSubmit({
		            type: 'post', //      get/post
		            url: '${ctx}/userLogin-default/handleLogin', //       url
		            data: $('#loginf').serialize(),
		            success: function(data) { // data           ,    json   
		                //      data      
		                alert('    !');
		            }
		            //$(this).resetForm(); //        
		        });
		        return false; //            
		    });
	    });
	});



	
       ,easyui       ,  form      [$("#loginf").submit()  ] ,    button   class    
  ,    a      ,             

좋은 웹페이지 즐겨찾기