<html lang="ja">
<head>
<meta name="description" content="JavaScript れんしゅう">
<meta charset="UTF-8">
<title>JavaScriptのれんしゅう</title>
<script src="https://code.jquery.com/jquery-3.1.0.js"></script>
</head>
<body style="font-size:2em">
<h1>
Hello World !
</h1>
<div> にゅうりょく1<input type="text" id="input1" /> </div>
<div> にゅうりょく2<input type="text" id="input2" /> </div>
<button onclick="calculate();">けいさん</button>
<div id="result">
<div>けっか</div>
</div>
<script>
// ここから JavaScript (ジャバ スクリプト)のプログラムが、はじまるよ
// 「//」はコメント。にんげんのための文で、じつはプログラムではないんだ。
// コンピュータは、ムシするから、何をかいても良いんだよ
//
// ★れんしゅう1★
// 上にかいてある Hello World ! を、じぶんの、すきな文字にかえて。
// どうなるか、ためしてみよう。
//
// ★れんしゅう2★
// 「けいさん」ボタンを押すと何がでるかな。ためしてみよう。
// alert() は、がめんに、もじをポップアップで表示する、かんすうだよ。
// そのあと、じゃまだから、「//」をあたまにつけて、コメントアウトしよう
// function は、「かんすう」のはじまり。
//「けいさん」ボタンを押すと <button onclick="calculate();"> がうごいて、
// よびだされるよ。
function calculate () {
// alertは、じゃまだから、あたまに // を付けてね。
alert("うわっ!ビックリした。");
var text1 = $( "#input1" ).val(); //text1 に「にゅうりょく1」をいれる
var text2 = $( "#input2" ).val(); //text2 に「にゅうりょく2」をいれる
var result = text1 + text2; // resultに、text1 と text2 をたして、いれる
// ★れんしゅう3★
// 「にゅうりょく1」と「にゅうりょく2」に、すきな文字や数字を入れて、
//「けいさん」ボタンを押そう。
// Apple と Pen をいれると、どうなるかな?
// 1 と 1 をいれると、どうなるかな?
//
// ★れんしゅう4★
// たしざんをするには、「Number()」を使って、文字を、数に変えるんだ。
// つぎの行のコメント(// result のあたまの「//」だけ)を消して、
// もういちどためしてみよう。
// result = Number( text1 ) + Number( text2 );
//
// ★れんしゅう5★
// うえの「+」を、べつの計算にして、どうなるか、ためしてみよう。
// たしざんは、+
// ひきざんは、-
// かけざんは、*
// わりざんは、/
// () もつかえるよ
// ★れんしゅう6★
// このあと、if ( result > 10 ) で、けっかが、10より大きかったら、
// 文字の色をかえてるよ。
// 「にゅうりょく」に、大きな数をいれて、ためしてみよう。
// ★れんしゅう6★
// このあと style='color:red' で、色をかえているよ。
// 好きな色に、かえてみよう。
// 赤は red 。青は blue。ピンクは pink。きいろ yellow。みどり green。
var result_text = "";
if ( result > 10 ) { // もし10よりおおきかったら
result_text = "<b style='color:blue'>" + result +"</b>";
} else { // そうじゃなかったら
result_text = "<b>" + result + "</b>";
}
// ★れんしゅう7★
// けっかが、500より大きかったとき、色がかわるようにしてみよう。
// ( result > 10) のところを、( result > 500)にすれば良いよ。
// プログラムをじゆうにかえて、ためしてみよう。
// けっかを、ひょうじするところ
var html = "<div> " + text1 + " と " + text2
+ " で・・・うん! " + result_text + " </div>";
$( "#result" ).append( html );
}
// ここでJavaScriptは、おわり
</script>
</body>
</html>
Output
You can jump to the latest bin by adding /latest
to your URL
Keyboard Shortcuts
Shortcut | Action |
---|---|
ctrl + [num] | Toggle nth panel |
ctrl + 0 | Close focused panel |
ctrl + enter | Re-render output. If console visible: run JS in console |
Ctrl + l | Clear the console |
ctrl + / | Toggle comment on selected lines |
ctrl + ] | Indents selected lines |
ctrl + [ | Unindents selected lines |
tab | Code complete & Emmet expand |
ctrl + shift + L | Beautify code in active panel |
ctrl + s | Save & lock current Bin from further changes |
ctrl + shift + s | Open the share options |
ctrl + y | Archive Bin |
Complete list of JS Bin shortcuts |
JS Bin URLs
URL | Action |
---|---|
/ | Show the full rendered output. This content will update in real time as it's updated from the /edit url. |
/edit | Edit the current bin |
/watch | Follow a Code Casting session |
/embed | Create an embeddable version of the bin |
/latest | Load the very latest bin (/latest goes in place of the revision) |
/[username]/last | View the last edited bin for this user |
/[username]/last/edit | Edit the last edited bin for this user |
/[username]/last/watch | Follow the Code Casting session for the latest bin for this user |
/quiet | Remove analytics and edit button from rendered output |
.js | Load only the JavaScript for a bin |
.css | Load only the CSS for a bin |
Except for username prefixed urls, the url may start with http://jsbin.com/abc and the url fragments can be added to the url to view it differently. |