2011-09-13から1日間の記事一覧

2011年09月12日のツイート

window.twttr = (function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0], t = window.twttr || {}; if (d.getElementById(id)) return t; js = d.createElement(s); js.id = id; js.src = "https://platform.twitter.com/widgets.js"; fjs.paren…

イベント

勉強会用JavaScriptメモイベントの登録方法は以下 HTMLの属性として記述 <button onclick="alert('Hello')">Hello</button> メリット DOMの特定や読み込みタイミングなどを気にしないでよい。 デメリット コンテンツであるhtmlを挙動を示すコードが侵食する。 DOMエレメントのon*メソッドに登録 <button id="btnHello">Hello</button> <script> …

イベントハンドラサンプルコード

<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="Content-Script-Type" content="text/javascript"> <title>Event sample</title> <script src="./event.js"></script> </head> <body> </body></html>