其實這個問題在初次學習html中select標簽時就已經(jīng)冒出來了,時至今日,依然沒有找到使用純css禁用a標簽的辦法——同事、同學、老師我都問過了,他們都千篇一律借助了javascript,難道真的必須要借助javascript嗎?
1、純css實現(xiàn)html中a標簽的禁用:
代碼如下:
<html>
<head>
<title>如何禁用a標簽</title>
<metacontent=text/html; charset=gb2312http-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 href=http://www.baidu.com/>百度</a>
<aclass=disablecss href=#onclick=javascript:alert('你好!?。?);>點擊</a>
</body>
</html>
上面雖然使用純css實現(xiàn)了對a標簽的禁用,不過由于opera、ie瀏覽器不支持pointer-events樣式,所以上面代碼在這兩類瀏覽器中起不到禁用a標簽的作用。
2、借助jquery和css實現(xiàn)html中a標簽的禁用:
代碼如下:
<html>
<head>
<title>02 ——借助jquery和css實現(xiàn)html中a標簽的禁用</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標簽中的href屬性
$('.disablecss').removeattr('onclick');//去掉a標簽中的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 href=http://www.baidu.com/>百度</a>
<a class=disablecss href=# onclick=javascript:alert('你好!!!');>點擊</a>
</body>
</html>
這種方式可以兼容所有瀏覽器,可是混用了javascript,這一點恐怕是致命的缺憾?。?!
3、借助jquery實現(xiàn)html中a標簽的禁用:
代碼如下:
<html>
<head>
<title>03 ——借助jquery實現(xiàn)html中a標簽的禁用</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標簽中的href屬性
$('.disablecss').removeattr('onclick');//去掉a標簽中的onclick事件
$(.disablecss).css(font,12px/1.5, 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 href=http://www.baidu.com/>百度</a>
<a class=disablecss href=# onclick=javascript:alert('你好?。?!');>點擊</a>
</body>
</html>
上面使用了純jquery實現(xiàn)了禁用html中a標簽的功能。
更多信息請查看IT技術(shù)專欄