0

なぜこれが機能しないのかわかりません。http://jsfiddle.net/PXrzh/

<button onclick="go()" >go</button>

js

function go() {
   window.location.href = "Confirmation.html";
}
4

1 に答える 1

0
<html>
    <script type="text/javascript">
        function go() {
            window.location.href = "Confirmation.html";
        }
    </script>
    <body>
        <button onclick="go()" >go</button>
    </body>
</html>

問題は見つかりませんでした...

アップデート

index.js

function go() {
    window.location.href = "Confirmation.html";
}

index.html

<html>
    <script type="text/javascript" src="index.js"></script>
    <body>
        <button onclick="go()" >go</button>
    </body>
</html>

まだ問題はありません...

于 2013-11-05T16:44:23.520 に答える