为了账号安全,请及时绑定邮箱和手机立即绑定

引用js函数时target无效,不知道为啥

  <p id="infos">

     <b id="second">5</b>秒后回到主页&nbsp;<a href="javascript:void(0);"  onclick="goBack()" target="_blank">返回</a>

     <!--引用js函数时target无效,不知道为啥-->

  </p>


正在回答

3 回答

a标签里的样式当然不影响JS了。

如果你想在新窗口里打开可以试下open方法。

//window.location.href =  "写成:
open("


1 回复 有任何疑惑可以回复我~
#1

慕粉1440489053

//window.location.href = "http://smartisan.com/"; open("http://smartisan.com/","_blank")
2017-03-28 回复 有任何疑惑可以回复我~
#2

Resen4983 提问者

多谢指教
2017-03-29 回复 有任何疑惑可以回复我~
<!DOCTYPE html>
<html>
 <head>
  <title>浏览器对象</title>  
  <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>   
 </head>
 <body>
  <H4>操作成功</H4>
  <p id="infos">
     <b id="second">5</b>秒后回到主页&nbsp;<a href="javascript:void(0);"  onclick="goBack()" target="_blank">返回</a>
     <!--引用js函数时target无效,不知道为啥-->
  </p>
 <a href="http://www.sina.com.cn/">sina.com</a>
<script type="text/javascript">  
 
	var sec = document.getElementById("second");
	var i = 10;
	function clock(){
		i--;
		sec.innerHTML = i;
		if(i==0){
			clearInterval(timer);
			var j= document.getElementById("infos").innerHTML="正在跳转...."
			window.location.href =  "http://smartisan.com/";
		}
	}
	var timer = setInterval("clock()",1000);
	//document.write(history.length); //test
	function goBack(){
		window.location.href="http://www.sina.com.cn/";
		/*浏览器历史记录长度为1,无法返回到前一个页面
		window.history.back();
		*/
	}
	
  </script> 
 </body>
</html>


0 回复 有任何疑惑可以回复我~

你的js函数内容是什么?

0 回复 有任何疑惑可以回复我~

举报

0/150
提交
取消

引用js函数时target无效,不知道为啥

我要回答 关注问题
意见反馈 帮助中心 APP下载
官方微信