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