用js怎么让a标签失效,失效5秒钟之后,在改为有效,用js怎么写啊
2个回答
展开全部
<!doctype html>
<html>
<head>
<title>无标题文档</title>
</head>
<body>
<script>
function wait5sec(){
document.getElementById("w1").setAttribute("href","http://www.baidu.com");
}
</script>
<a id="w1" href="javascript:void(0)" onClick="setTimeout(wait5sec,5000)">点我5秒后,链接生效</a>
</body>
</html>
另存为html;以上,希望能帮到你。
展开全部
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title></title>
</head>
<body>
<a href="http://www.baidu.com" onclick="return false;" id="aclick">bwwwwww</a>
<p id="five"></p>
<script type="text/javascript">
setTimeout("aEnable()",5000);
function aEnable(){
document.getElementById("five").innerText = "test :5s later"
document.getElementById("aclick").onclick = function(){
return true;
}
}
</script>
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询