读书人

js怎样为href赋值?解决办法

发布时间: 2012-03-22 17:43:57 作者: rapoo

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>

[解决办法]

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";   }} 

读书人网 >JavaScript

热点推荐