なぜこれが機能しないのかわかりません。http://jsfiddle.net/PXrzh/
<button onclick="go()" >go</button>
js
function go() {
window.location.href = "Confirmation.html";
}
なぜこれが機能しないのかわかりません。http://jsfiddle.net/PXrzh/
<button onclick="go()" >go</button>
js
function go() {
window.location.href = "Confirmation.html";
}
<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>
まだ問題はありません...