我正在使用这个JS代码:
window.onbeforeunload = function() {
return "Any changes you have made WILL be lost!";
}
如果用户试图离开页面
,则显示警告窗口我只希望在文本区域中有文本时显示警报
我试过了:
window.onbeforeunload = function() {
var update_text = document.getElementById('ticket_update').value;
if(!update_text == '') {
return "Any changes you have made WILL be lost!";
}
}
但如果文本区域为空,则它根本不显示警告