触发时间问题

来源:6-10 卸载事件(onunload)

Roner

2016-04-26 16:54

网页关闭,和该事件的触发,那个先开始?

写回答 关注

1回答

  • Mr依咎
    2016-04-26 18:17:06
    已采纳

    网页关闭事件先触发 可参考删除session

    前台代码:

    window._onbeforeunload = function()
    {
        $('txtrefchild').click();
        return true;
    }

    后代代码:

    protected void txtrefchild_Click(object sender, EventArgs e)
    {
        Session.Remove("dataset");
    }


    Roner

    非常感谢!

    2016-04-26 18:19:39

    共 1 条回复 >

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468061 学习 · 21891 问题

查看课程

相似问题