js 获取onbeforeunload对话框的返回值
onbeforeunload事件中会弹出一个对话框,如何获取对话框的返回值 --------------------编程问答-------------------- up --------------------编程问答-------------------- 都这么多年了 还没人解决了?? --------------------编程问答--------------------+1 --------------------编程问答-------------------- window.onbeforeunload = function()
{
if((window.event.screenX - window.screenLeft) > (document.documentElement.scrollWidth-20) &&
window.event.clientY < 0 || window.event.altKey)
{
} else{
}
}
hiddenfield保存值 --------------------编程问答-------------------- 估计难住了
补充:.NET技术 , C#