用js阻止Form的储存

crmForm.attachEvent("onsave", newForm_Save);
function newForm_Save() {
        event.returnValue = false;
        return false;

}

当然也可以在Form中的Save事件中直接

return false;

原文地址:https://www.cnblogs.com/janmson/p/1747714.html