这是具有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地址正确无误。“
我认为计算机将我的移动网址注册为文件而非网站地址,但我不确定。无论哪种方式,我该如何解决这个问题?
提前致谢。
答案 0 :(得分:1)
使用window.location.href = "http://mobile.dudamobile.com/site/syedasadiq"
。