主頁 > 知識庫 > 使用純css禁用html中a標(biāo)簽無需JavaScript

使用純css禁用html中a標(biāo)簽無需JavaScript

熱門標(biāo)簽:騰訊植物園地圖標(biāo)注 電話機器人宣傳片 鄒城智能外呼系統(tǒng) 經(jīng)綸電銷機器人 華為收費站地圖標(biāo)注 外呼智能系統(tǒng)報價 巫山縣地圖標(biāo)注app 浦東新區(qū)百度地圖標(biāo)注圖片 個貸電銷機器人
其實這個問題在初次學(xué)習(xí)html中select標(biāo)簽時就已經(jīng)冒出來了,時至今日,依然沒有找到使用純css禁用a標(biāo)簽的辦法——同事、同學(xué)、老師我都問過了,他們都千篇一律借助了JavaScript,難道真的必須要借助JavaScript嗎?

1、純css實現(xiàn)html中a標(biāo)簽的禁用:

復(fù)制代碼
代碼如下:

<html>
<head>
<title>如何禁用a標(biāo)簽</title>
<metacontent="text/html; charset=GB2312"http-equiv="Content-Type">
<style type="text/css">
body{
font:12px/1.5 \5B8B\4F53, Georgia, Times New Roman, serif, arial;
}
a{
text-decoration:none;
outline:0 none;
}
.disableCss{
pointer-events:none;
color:#afafaf;
cursor:default
}
</style>
</head>
<body>
<aclass="disableCss" >百度</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<aclass="disableCss" href="#"onclick="javascript:alert('你好?。?!');">點擊</a>
</body>
</html>

上面雖然使用純css實現(xiàn)了對a標(biāo)簽的禁用,不過由于opera、ie瀏覽器不支持pointer-events樣式,所以上面代碼在這兩類瀏覽器中起不到禁用a標(biāo)簽的作用。

2、借助Jquery和css實現(xiàn)html中a標(biāo)簽的禁用:

復(fù)制代碼
代碼如下:

<html>
<head>
<title>02 ——借助Jquery和css實現(xiàn)html中a標(biāo)簽的禁用</title>
<meta content="text/html; charset=GB2312" http-equiv="Content-Type">
<script type="text/javascript" src="./jquery-1.6.2.js"></script>
<script type="text/javascript">
$(function() {
$('.disableCss').removeAttr('href');//去掉a標(biāo)簽中的href屬性
$('.disableCss').removeAttr('onclick');//去掉a標(biāo)簽中的onclick事件
});
</script>
<style type="text/css">
body {
font: 12px/1.5 \5B8B\4F53, Georgia, Times New Roman, serif, arial;
}
a {
text-decoration: none;
outline: 0 none;
}
.disableCss {
color: #afafaf;
cursor: default
}
</style>
</head>
<body>
<a class="disableCss" >百度</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a class="disableCss" href="#" onclick="javascript:alert('你好?。?!');">點擊</a>
</body>
</html>

這種方式可以兼容所有瀏覽器,可是混用了JavaScript,這一點恐怕是致命的缺憾?。?!

3、借助Jquery實現(xiàn)html中a標(biāo)簽的禁用:

復(fù)制代碼
代碼如下:

<html>
<head>
<title>03 ——借助Jquery實現(xiàn)html中a標(biāo)簽的禁用</title>
<meta content="text/html; charset=GB2312" http-equiv="Content-Type">
<script type="text/javascript" src="./jquery-1.6.2.js"></script>
<script type="text/javascript">
$(function() {
$('.disableCss').removeAttr('href');//去掉a標(biāo)簽中的href屬性
$('.disableCss').removeAttr('onclick');//去掉a標(biāo)簽中的onclick事件
$(".disableCss").css("font","12px/1.5 \\5B8B\\4F53, Georgia, Times New Roman, serif, arial");
$(".disableCss").css("text-decoration","none");
$(".disableCss").css("color","#afafaf");
$(".disableCss").css("outline","0 none");
$(".disableCss").css("cursor","default");
});
</script>
</head>
<body>
<a class="disableCss" >百度</a>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<a class="disableCss" href="#" onclick="javascript:alert('你好!?。?);">點擊</a>
</body>
</html>

上面使用了純Jquery實現(xiàn)了禁用html中a標(biāo)簽的功能。

標(biāo)簽:楊凌 廣西 南平 日喀則 那曲 滁州 三沙 唐山

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《使用純css禁用html中a標(biāo)簽無需JavaScript》,本文關(guān)鍵詞  使用,純,css,禁用,html,中,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《使用純css禁用html中a標(biāo)簽無需JavaScript》相關(guān)的同類信息!
  • 本頁收集關(guān)于使用純css禁用html中a標(biāo)簽無需JavaScript的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章