摘要:JavaScript阻止浏览器默认操作有时候我们需要改变某些默认操作,如点击一个链接时,我们不希望执行跳转:function getPagingData(e){ new Ajax.updater(...);//ajax 部分代码 /*---阻止默认操作---*/ if(e.preventDefault) { e.preventDefault(); } else { e.returnValue = false; }}
阅读全文
02 2009 档案
摘要:JavaScript阻止浏览器默认操作有时候我们需要改变某些默认操作,如点击一个链接时,我们不希望执行跳转:function getPagingData(e){ new Ajax.updater(...);//ajax 部分代码 /*---阻止默认操作---*/ if(e.preventDefault) { e.preventDefault(); } else { e.returnValue = false; }}
阅读全文
摘要:aspx 是 web 页面,ascx 是 web 用户控件,asmx 是web services,asax 是全局文件。
阅读全文
|