禁止打开新页面

有时候为了防止session混乱,禁止用新页面打开链接。
页面上的控制如下
javascript:
	function jump(url){
		window.location.href = url;
	}

链接
 <A HREF="javascript:(function(){if(typeof jump !== 'undefined'){jump('http://www.google.com');}else{return '禁止打开新窗口';}})()">a</A>


如果有更好的方法请告知。

你可能感兴趣的:(JavaScript,html)