实现模态框中输入数据提交到页面

1、在操作中创建点击标签

 设置排序

2、模态框代码

实现模态框中输入数据提交到页面_第1张图片

 
 

3、书写ajax

实现模态框中输入数据提交到页面_第2张图片

 /*设置排序*/
     $("#reject").click(function(){ 
    	var data=$("#sortForm").serialize();
    	$.ajax({
    		url:"${base}/admin/wefine_doctor/updateSorts.jhtml",
    		type:"post",
    		dataType:"json",
    		data:data,
    		success:function(message){
    			art.message(message);
					if (message.type == "success") {
						window.setTimeout(function() {
							window.location.reload();
						}, 500);
					}
    		}
    	});
    });
    
     function reject(id){
    	 $("#id").val(id);	
     };

 

 

4.书写controller层

/*设置排序*/
	@RequestMapping(value = "/updateSorts",method = RequestMethod.POST)
	public @ResponseBody Message updateSorts(WefineDoctor wefineDoctor, RedirectAttributes redirectAttributes){
		wefineDoctorService.update(wefineDoctor);
		addFlashMessage(redirectAttributes, SUCCESS_MESSAGE);
		return SUCCESS_MESSAGE;
	}

 

你可能感兴趣的:(实现模态框中输入数据提交到页面)