如何使用javascript在同一个窗口中打开网页

时间:2013-08-20 15:41:25

标签: button mobile

这是具有GO TO MOBILE SITE按钮的网页的脚本。单击按钮后,我希望它转到移动网站。

<!DOCTYPE html>
<html>
<head>
  <script type="text/javascript">
    function goMobile() {
      window.open("mobile.dudamobile.com/site/syedasadiq");
    }
  </script>
</head>
<body>
  <input type="submit" value="Go to mobile site" onclick="goMobile()" />
</body>
</html>

我确信我已经完成了所有操作,但是当我点击浏览器上的按钮时,它会产生一条错误消息:“无法找到...:/ Users / AbdurRasheed / Desktop / mobile.dudamobil ..确保路径或Internet地址正确无误。“

我认为计算机将我的移动网址注册为文件而非网站地址,但我不确定。无论哪种方式,我该如何解决这个问题?

提前致谢。

1 个答案:

答案 0 :(得分:1)

使用window.location.href = "http://mobile.dudamobile.com/site/syedasadiq"