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

大神们帮忙看下, location.[方法] 在函数块为什么报undefined?换成 location.[属性] 就可以

<script type="text/javascript">

function locationTest(){

  var h_assign=location.assign('https://developer.mozilla.org/zh-CN/docs/Web/API/Location/assign');

  document.write("返回新的文档方法:"+ h_assign); 


  var h_pathname=location.pathname;

  document.write("<br>" + "返回URL路径:"+ h_pathname );

}

</script>

<input type="button" value="按钮" onclick="locationTest()">


正在回答

2 回答

location.assign()是加载网页。。没有返回值吧?

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

bestMan 提问者

恩恩,把location.assign()赋值变量,顺序换了下就可以了。 <script type="text/javascript"> var h_assign; function locationTest(){ location.assign('http://www.baidu.com')=h_assign; document.write("返回新的文档方法:"+ h_assign); } </script> <input type="button" value="按钮" onclick="locationTest()"> ​
2019-08-20 回复 有任何疑惑可以回复我~

顺序调换,你确定能运行?

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

举报

0/150
提交
取消

大神们帮忙看下, location.[方法] 在函数块为什么报undefined?换成 location.[属性] 就可以

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