我有一个超链接代码,如: 点击这里 ,我想根据单选按钮点击自定义此链接,如: 是 没有 on radio-button value:'yes',我想启用超链接。 而在单选按钮值:'不',我想禁用超链接。 因此,要在单击单选按钮“否”后禁用超链接,我在disable-link()方法中写了以下内容: function disable-link() { //document.getElementById('disable-link').disabled=true; document.getElementById('disable-link')。href ='#'; } 现在,我必须在enable-link()方法中编写,以便在单击单选按钮'YES'后重新启用超链接
function enable-link()
{
//document.getElementById('disable-link').disabled=false;
// SOME LINE OF CODE TO RE-ENABLE THE LINK
}
document.getElementById('disable-link')。disabled = true * / * false; - :它会禁用但用户可以点击虽然如此,我使用了“ document.getElementById('disable-link')。href ='#'; ” - :它使链接也不可点击 请建议。
答案 0 :(得分:5)
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>StackoverFlow answer for question</title>
<script type="text/javascript">
var link,color;
function disable_link() {
document.getElementById('testlink').disabled=true;
link = document.getElementById('testlink').href;
document.getElementById('testlink').removeAttribute('href');
//document.getElementById('testlink').style.color = "grey";
}
function enable_link() {
document.getElementById('testlink').setAttribute("href",link);
}
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<p>
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_0" onchange="disable_link();" />
Radio</label>
<br />
<label>
<input type="radio" name="RadioGroup1" value="radio" id="RadioGroup1_1" onchange="enable_link();" />
Radio</label>
<br />
</p>
<a id="testlink" href="http://www.yahoo.com"> test </a>
</form>
</body>
</html>