2014年3月16日日曜日

開発環境

Head First JavaScript ―頭とからだで覚えるJavaScriptの基本( Michael Morrison (著), 豊福 剛 (翻訳)、オライリージャパン)の11章(バグをなくせ)、エクササイズ(p.503)を解いてみる。

その他参考書籍

エクササイズ(p.503)

コード(BBEdit)

sample.js

var message = 'Hey, she\s the winner!',
    response = "She said, \"I can't believe I won.\"";

$('#pre0').text(message + '\n' + response);


sample.html

<input type="button" value="Winner" onclick="givePrize('Ruby');" />

sample.js

var givePrize = function (x) {
    $('#pre1').text(x);
};











						

0 コメント:

コメントを投稿