为什么我提交之后是undefined

来源:8-11 Location对象

Ticvory

2016-11-01 23:03

<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>location</title>
</head>
 <script type="text/javascript">
     document.write(window.location.herf);
 </script>
</head>
<body>
</body>
</html>


写回答 关注

3回答

  • 明天你好4153884
    2016-11-03 21:50:35
    已采纳

    href写错了……

    Ticvor...

    非常感谢!

    2016-11-03 22:32:20

    共 1 条回复 >

  • stone310
    2016-11-02 00:03:25

    因为你window.location.herf属性没有定义,属性未定义则输出undefined;

    在之前加上定义就好了

    <!DOCTYPE HTML>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
    <title>location</title>
    </head>
     <script type="text/javascript">
         window.location.herf="    //定义属性 
         document.write(window.location.herf);
     </script>
    </head>
    <body>
    </body>
    </html>


  • spongebobing
    2016-11-01 23:16:51

    没有定义变量

JavaScript进阶篇

本课程从如何插入JS代码开始,带您进入网页动态交互世界

468060 学习 · 21891 问题

查看课程

相似问题