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