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

为什么我提交之后是undefined

<!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>


提问者:Ticvory 2016-11-01 23:03

个回答

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

    href写错了……

  • 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

    没有定义变量