忍者ブログ
2009/12/12作成
  • « 2025.04.
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • »
[PR]
×

[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。

ページ移動
関数

// 指定されたページに遷移する
function go(url) {
    document.location=url;
}


使用方法(外部jsファイルの関数を使用方法はこちら

<input type="button" value="次へ" onclick="go('http://www.google.co.jp/');" />

PR
外部ファイルを使用する
1.html、css、jsの3ファイルを用意する
ファイル名 ソース
test.html
<html>
  <head>
    <link href="./style.css" rel="stylesheet" type="text/css">
    <script src="./script.js"></script>
  </head>
  <body>
    <input type="button" value="オレSE" onclick="showAlert('オレSE');" />
  </body>
</html>
style.css
/* body スタイル */
body {
    background-color:lightgray;
}
script.js
// 警告メッセージを表示する
function showAlert(message) {
    window.alert(message);
}

2.3ファイルを同じフォルダに保存する

3.htmlファイルをブラウザで開く

4.「オレSE」ボタンをクリックし、「オレSE」が出れば成功

Powered by [PR]
/ Design by sky hine / PR:忍者ブログ