自定义jquery确认弹出返回值未返回到presaveaction中的主页面

时间:2013-05-23 09:49:20

标签: jquery jquery-plugins sharepoint-2010

主页面点击保存按钮启动自定义确认消息。单击“否”,返回值为true。但是主页面没有保存。

$.msgbox('<br />Are you ready to submit?', {
       type: "confirm",
       buttons: [
                              { type: "submit", value: "Yes" },
                               { type: "submit", value: "No" }
                       ]
   }, function(result) {
       if (result == "Yes") {
           alert("hello."); 
           return false;          
       }
       else{ 
       return true;               
        }       
   });
}

0 个答案:

没有答案