a标签 href 调用 JS函数失败 <a href="javascript:hh(); ">
<a href="javascript:hh(); ">返回</a>
<script type="text/javascript">
var cond=document.getElementById("second").innerHTML;
function sec(){
cond--;
document.getElementById("second").innerHTML=cond;
if(cond==1){
//window.location.assign(location.hostname);
window.location.assign("http://www.imooc.com");
}
}
setInterval(sec,1000);
function hh(){
window.history.go(-2);
}
</script>
我哪里错了?怎么我a标签调用函数失败?请帮忙一下,谢谢!!详细可查看代码!!
另外, window.location.assign(如果这里不使用http://),是否不能正常加载地址?
就如 window.location.assign(location.hostname); 不能正常打开?