0

我正在尝试使用表单创建一个页面,答案取决于要重定向的页面。如果我使用警报,表单和 javascript 可以 100% 正确工作。我试图用 window.location 命令和其他想法替换警报,但没有任何反应。有人可以解释如何做到这一点,更重要的是你的建议有效吗?

这工作正常:

<script type = "text/javascript">
<!--
function checkAnswers()
{
    var myQuiz = document.getElementById( "myQuiz" );
    if ( myQuiz.elements[ 1 ] .checked)
       alert( "Correct");
    else
       alert( "Failed" );
};
</script>

这不起作用!:

<script type = "text/javascript">
<!--
function checkAnswers()
{
    var myQuiz = document.getElementById( "myQuiz" );
    if ( myQuiz.elements[ 1 ] .checked)
        window.location = "www.bing.com";
    else
        window.location = "www.google.com";
};
</script>
4

1 回答 1

4

你没有说发生了什么,但你可能会收到 404 错误,对吧?

如果您的 URL 不以 开头http://,它们将被认为是相对的,并且浏览器会尝试将您带到一个不存在的页面。用这个:

function checkAnswers()
{
    var myQuiz = document.getElementById( "myQuiz" );
    if ( myQuiz.elements[ 1 ] .checked)
        window.location = "http://www.bing.com";
    else
        window.location = "http://www.google.com";
};
于 2012-05-16T22:57:56.783 回答