$(function(){
function IsInnerLink(href) {
if(href.indexOf('http://www.oeshow.cn') === 0 ){
return true;
} else {
return false;
}
}
$('a').click(function(){
var href = $(this).attr('href');
var target = $(this).attr('target');
if(target != '_blank' || target == undefined ) {
$(this).attr('target','_parent');
}
if(href != '' && !IsInnerLink(href)) {
alert('非本站内部链接,禁止打开!');
return false;
}
})
})
|