function setCheckSubmit()
{
$(".bt_submit[type='submit']").bind("click", checkSubmit);
$(".bt_submit[type='button']").attr("onclick", "if (!checkSubmit(event)){return false;}" + $(".bt_submit[type='button']").attr("onclick"));
}
// 检测提交,兼容ie/firefox/chrome
function checkSubmit(event)
{
// 防止重复提交
if ($(this).attr("submitState") == "1")
{
return false;
}
var oEvent = event;
// 如果是jquery.event
if (event.originalEvent)
{
oEvent = event.originalEvent;
}
// 检查必填项
checkInput(oEvent);
if (!oEvent.returnValue)
{
return false;
}
// 设置提交状态
$(this).attr("submitState", "1").val("正在提交");
return true;
}
{
$(".bt_submit[type='submit']").bind("click", checkSubmit);
$(".bt_submit[type='button']").attr("onclick", "if (!checkSubmit(event)){return false;}" + $(".bt_submit[type='button']").attr("onclick"));
}
// 检测提交,兼容ie/firefox/chrome
function checkSubmit(event)
{
// 防止重复提交
if ($(this).attr("submitState") == "1")
{
return false;
}
var oEvent = event;
// 如果是jquery.event
if (event.originalEvent)
{
oEvent = event.originalEvent;
}
// 检查必填项
checkInput(oEvent);
if (!oEvent.returnValue)
{
return false;
}
// 设置提交状态
$(this).attr("submitState", "1").val("正在提交");
return true;
}