Heim > Artikel > Web-Frontend > 应用框架时,明明改了href,却还是转向了之前的网站为什么?_html/css_WEB-ITnose
你是怎么写的
如下测试
<!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>无标题文档</title><script >window.onload=function(){ var oA=document.getElementById('test'); var oBtn=document.getElementById('btn'); oBtn.onclick=function() { oA.href='http://www.163.com'; } }</script></head><body><a href="http://www.baidu.com" id="test">测试</a><input type="button" value="改变" id="btn" /></body></html>
我重新部署了一下,可以了,间歇性故障,有时重启myeclipse就行了,有时还是不行,有时过一阵子就好了。原先url设置的都是百度,后来根据需要一个一个改的时候,改过的网址还是会跳到百度。多谢了