0

这是带有 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 地址正确。”

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

提前致谢。

4

1 回答 1

1

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

于 2013-08-20T15:43:07.063 回答