window.location.href不跳转问题
...'click',function(){varhref=this.chamber_content.getElement('a');window.location.hr...
...
'click', function()
{
var href = this.chamber_content.getElement('a');
window.location.href = href;
}
...
这段代码是href链接由前台html页面<a href="http://www.baidu.com" target="_blank">Enter</a>传过来
但是是在本页面跳转 怎么能改成点击之后跳转新页面?
求大神指点 展开
'click', function()
{
var href = this.chamber_content.getElement('a');
window.location.href = href;
}
...
这段代码是href链接由前台html页面<a href="http://www.baidu.com" target="_blank">Enter</a>传过来
但是是在本页面跳转 怎么能改成点击之后跳转新页面?
求大神指点 展开
1个回答
展开全部
如果是想弹出新页面显示的话建议可以考虑使用window.open("url");这种方式
这段代码你可以试试,正常打开没有任何问题
<body>
<script>
var a = "http://www.baidu.com";
window.open(a);
</script>
</body>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询