问答详情
源自:8-11 Location对象

大神们帮忙看下, 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()">


提问者:bestMan 2019-08-07 17:56

个回答

  • 辽工大
    2019-08-10 21:52:47
    已采纳

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

  • 宝慕林6934861
    2020-07-11 12:16:55

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