js怎样为href赋值?解决办法
js怎样为href赋值?
js怎样为href赋值?
可以这样的吗?
<form action="" method="post" name="myform">
<a href="" name=links>点击</a>
</form>
<script>
document.myform.links.href="http://www.google.com"
</script>
------解决方案--------------------
js怎样为href赋值?
可以这样的吗?
<form action="" method="post" name="myform">
<a href="" name=links>点击</a>
</form>
<script>
document.myform.links.href="http://www.google.com"
</script>
------解决方案--------------------
- HTML code
<form action="" method="post" name="myform" > <a href="" id=links >点击 </a > </form > <script > document.getElementById("links").href="http://www.google.com"; </script >
------解决方案--------------------
- JScript code
window.onload=function() { var theLink=document.getElementById("myLink"); theLink.onmouseover=function() { this.setAttribute("href","google.com"); this.innerHTML="link to google.com"; } }