|
|
@@ -17,10 +17,20 @@ $(function(){
|
|
|
$(this).prop('outerHTML', '<div style="width: 100%;overflow-x: auto;">'+$(this).prop('outerHTML')+'</div>');
|
|
|
});
|
|
|
|
|
|
- //超链接都在新窗口打开
|
|
|
+ //不含本机域名的超链接都在新窗口打开
|
|
|
$('a[href^="http"]').each(function() {
|
|
|
$(this).attr('target', '_blank');
|
|
|
+ $(this).click(function(){
|
|
|
+ var target_url = $(this).attr("href") ;
|
|
|
+ if (target_url.indexOf(window.location.host) > -1 ){
|
|
|
+ window.top.location.href = target_url;
|
|
|
+ return false;
|
|
|
+ }
|
|
|
+
|
|
|
+ });
|
|
|
+
|
|
|
});
|
|
|
+
|
|
|
if (!isMobile()) {
|
|
|
$("th").css("min-width","77px");
|
|
|
};
|