DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> CSS入門知識 >> CSS詳解 >> css/JS/jquery三種方法去掉鏈接虛線框
css/JS/jquery三種方法去掉鏈接虛線框
編輯:CSS詳解     

css: 兼容性很差。

 代碼如下  

a:focus,input:focus {outline:none;}

在 Firefox 裡可以用 -moz-outline:none; 或者 outline:none; 來將其去掉。所以我們可以這樣寫:

 代碼如下  

a:focus {
    outline:none;
   -moz-outline:none;
}

直接加:

onfocus="this.blur()"

也可以利用htc文件加入a.style.behavior屬性.如:

 代碼如下  

<style>
a,img
{
behavior:url(js文件地址);
}
</style>

在js文件中寫入下面語句

 

 代碼如下   <attach event="onFocus" handler="onFocus" />
<SCRIPT language="javascript">
function onFocus()
{
this.blur();
}
</SCRIPT>

JQ的寫法:

 代碼如下  

$("input:not(input[type='text'],input[type='password'])").focus(function(){
    this.blur();

});


XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved