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>
href写错了……
因为你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>
没有定义变量
JavaScript进阶篇
468060 学习 · 21891 问题
相似问题