如何在按钮单击时通过 Javascript更改标签的href
属性值<a/>
?
<script type="text/javascript">
function f1()
{
document.getElementById("abc").href="xyz.php";
}
</script>
<a href="" id="abc">jhg</a>
<a href="" id="" onclick="f1()">jhhghj</a>
如何在按钮单击时通过 Javascript更改标签的href
属性值<a/>
?
<script type="text/javascript">
function f1()
{
document.getElementById("abc").href="xyz.php";
}
</script>
<a href="" id="abc">jhg</a>
<a href="" id="" onclick="f1()">jhhghj</a>
没有href
,点击将重新加载当前页面,所以你需要这样的东西:
<a href="#" onclick="f1()">jhhghj</a>
或者像这样防止滚动:
<a href="#" onclick="f1(); return false;">jhhghj</a>
或者return false
在你的f1
函数中:
<a href="#" onclick="return f1();">jhhghj</a>
....或者,不显眼的方式:
<a href="#" id="abc">jhg</a>
<a href="#" id="myLink">jhhghj</a>
<script type="text/javascript">
document.getElementById("myLink").onclick = function() {
document.getElementById("abc").href="xyz.php";
return false;
};
</script>
正是 Nick Carver 在那里所做的,但我认为最好使用 DOM setAttribute 方法。
<script type="text/javascript">
document.getElementById("myLink").onclick = function() {
var link = document.getElementById("abc");
link.setAttribute("href", "xyz.php");
return false;
}
</script>
这是额外的一行代码,但发现它在结构上更好。
移除href
属性:
<a id="" onclick="f1()">jhhghj</a>
如果链接样式很重要,那么:
<a href="javascript:void(f1())">jhhghj</a>
<a href="#" id="a" onclick="ChangeHref()">1.Change 2.Go</a>
<script>
function ChangeHref(){
document.getElementById("a").setAttribute("onclick", "location.href='http://religiasatanista.ro'");
}
</script>
这是我的看法。当用户按下提交按钮时,我需要通过从文本框中收集值来创建 URL。
<html>
<body>
Hi everyone
<p id="result"></p>
<textarea cols="40" id="SearchText" rows="2"></textarea>
<button onclick="myFunction()" type="button">Submit!</button>
<script>
function myFunction() {
var result = document.getElementById("SearchText").value;
document.getElementById("result").innerHTML = result;
document.getElementById("abc").href="http://arindam31.pythonanywhere.com/hello/" + result;
}
</script>
<a href="#" id="abc">abc</a>
</body>
<html>