我希望让用户被跳转到我的网站的一个已经锚定的部分,这取决于他们在警报框中的选择。当警报框弹出时,如果他们确认他们有一部iPhone(这只是信息性的,设备真的不重要),它应该说“酷”,并让他们呆在原地,因为iPhone信息从顶部开始。但是如果他们取消了,我希望他们是跳转到页面底部的Android信息开始。
我一直在浏览堆栈溢出和其他各种网站,但我找不到解决这个问题的东西,但如果我错了,请原谅。
<!--the Javascript function -->
function Question() {
var x=window.confirm("You have an iPhone right???")
if (x)
window.alert("Good!")
else
window.alert("Here is info for your device type!")
}
<!-- the html im looking to jump to -->
<h2 id = galaxyInt><a id = "SamsungStart">Samsung Galaxy Mobile
Security</a></h2>
我希望通过不单击警报框确认else语句将用户从页面跳到正确的部分。
最佳答案
使用window.location.ref=“#SamsungStart”;链接到要转到的id。
<!--the Javascript function -->
function Question() {
var x=window.confirm("You have an iPhone right???")
if (x)
window.alert("Good!")
else
window.location.href = "#SamsungStart";
}
Question();
#top{
width:100%;
height:300px;
float:left;
background-color:blue;
}
.container2{
width:100%;
height:400px;
float:left;
background-color:green;
}
#galaxyInt{
width:100%;
float:left;
}
#SamsungStart{
width:100%;
float:left;
}
<!-- the html im looking to jump to -->
<div id = "top"></div>
<div class="container2">
<h2 id = "galaxyInt"><a id = "SamsungStart">Samsung Galaxy Mobile
Security</a></h2></div>
关于javascript - 选择警报框选项时页面跳转,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56096788/