我正在尝试自定义退出弹出窗口中显示的文本但由于某些原因它没有注册我提供的文本。
window.thisPage = window.thisPage || {};
window.thisPage.isDirty = false;
window.thisPage.closeEditorWarning = function (event) {
if (window.thisPage.isDirty)
return 'Please save your current RFP draft before proceeding.' +
' - if you leave before saving, then your changes will be lost.'
else
return undefined;
};
$("form").on('keyup', 'textarea,input,select',
function () {
window.thisPage.isDirty = true;
});
$("form").submit(function () {
window.thisPage.isDirty = false;
});
window.onbeforeunload = window.thisPage.closeEditorWarning;
任何人都可以查看我错过的内容吗?
还可以使用我自己的样式自定义弹出窗口吗?