我正在使用Jquery子表单。但表单元素会附加到URL。
知道如何防止此功能。
$("#form_chk_app_pnt_tdy").submit(function()
{
//alert("pfo_gnCheckNumber");
$.ajax({
url:'cfc/print.cfc?method=getMassChkReqIDs',
type:'GET',
beforeSend: function(xhr,settings)
{
//alert(xhr.readyState);
//setTimeout(function (){
$('#dv_gnCheckNumber').hide();
$('#load_image').show();
//},2000);
},
success:function(data,textStatus,xhr)
{
//alert(xhr.readyState);
$('#dv_gnCheckNumber').show();
$('#pfo_gnCheckNumber').attr('disabled','disabled');
$('#load_image').hide();
//$("#form_chk_app_pnt_tdy").click();
//(event.preventDefault) ? event.preventDefault() : event.returnValue = false;
},
error:function(xhr,textStatus,errorThrown)
{
alert(errorThrown);
}
});
});
提交此表单时,我会在URL中获取复选框值和按钮值。我不想要这种行为。
答案 0 :(得分:0)
使用POST
方法。而不是使用Get
方法。