admin管理员组文章数量:1344330
I am trying to redirect the page dynamically depending upon the value of the dropdown box. I get the value of drop down box in JavaScript. Depending on the dropdown value I want to redirect the page.
This is sample code:
<script type="text/javascript">
function RedirectMe(){
var chosanDept = document.getElementById("Dept");
var str = chosanDept.options[chosanDept.selectedIndex].text;
if(str=='HR')
{
alert('Yes in IF' + str);
window.location = "";
}
}
</script>
here
chosanDept
is the variable to get the value of dropdown box. But I am not able to redirect page using various function like
window.location, location.replace, location.href.
And one more my if condition works, I get the alert 'Yes in IF HR'
What goes wrong here?
I am trying to redirect the page dynamically depending upon the value of the dropdown box. I get the value of drop down box in JavaScript. Depending on the dropdown value I want to redirect the page.
This is sample code:
<script type="text/javascript">
function RedirectMe(){
var chosanDept = document.getElementById("Dept");
var str = chosanDept.options[chosanDept.selectedIndex].text;
if(str=='HR')
{
alert('Yes in IF' + str);
window.location = "http://www.google.";
}
}
</script>
here
chosanDept
is the variable to get the value of dropdown box. But I am not able to redirect page using various function like
window.location, location.replace, location.href.
And one more my if condition works, I get the alert 'Yes in IF HR'
What goes wrong here?
Share Improve this question edited Dec 24, 2014 at 21:11 Jeffrey Bosboom 13.7k16 gold badges81 silver badges94 bronze badges asked Jul 16, 2013 at 8:09 ajay_tajay_t 2,3857 gold badges40 silver badges65 bronze badges 5- Do you get any errors in the console? (F12 in Chrome or IE, Ctrl+Shift+K in Firefox.) – RichieHindle Commented Jul 16, 2013 at 8:12
- @RichieHindle, i didn't get any errors in console in both the browser – ajay_t Commented Jul 16, 2013 at 8:19
- Hi Optimus, your code works if you use onChange event on the select element like <select id="Dept" onChange="RedirectMe()"> <option>select</option> <option>HR</option> </select> – Rupam Datta Commented Jul 16, 2013 at 8:28
- @RupamDatta Actually i am submitting the form. So i have added event in the form only as '"onSubmit = "RedirectMe()"'. And all the including select are inside the form only. – ajay_t Commented Jul 16, 2013 at 8:33
- Okay. I tried your code and it worked like a gem. Anyways, great work. – Rupam Datta Commented Jul 16, 2013 at 8:37
1 Answer
Reset to default 9Try adding return false;
to the end of your RedirectMe()
function
And then wherever you are calling the function, make sure you put return
there, like onclick="return RedirectMe();"
本文标签: htmlPage does not redirect when setting windowlocation in JavaScriptStack Overflow
版权声明:本文标题:html - Page does not redirect when setting window.location in JavaScript - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743795160a2540294.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论