我在阻止按钮提交表单时遇到问题。它在 FF 中不起作用,但在 IE 和 chrome 中运行良好。有什么建议吗?
function CheckExhibitsAndRunningLog(taskId) {
if (event.preventDefault) {
event.preventDefault();
}
if (event.stopPropagation) {
event.stopPropagation();
}
event.returnValue = false;
//e.cancelBubble = true;
// window.event.preventDefault();
//this is web service call
Empire.ScriptServices.CheckTaskUpdateValid(taskId, OnComplete, OnError);
return false;
}