摘要:
有时在页面的刷新会触发window.onbeforeunload()事件,只要加一个判断就可以了。function window.onbeforeunload() { if (event.clientX>document.body.clientWidth && event.clientY<0||event.altKey){ window.event.returnV... 阅读全文
摘要:
if exists(select id from sysobjects where [name]='splitfun')begindrop function splitfunendgocreate function splitfun(@str varchar(1000),@split varchar(10)) returns @a table(col varchar(20))--只是一张虚表asb... 阅读全文