HTML

人間の知恵の結晶

これはアークエンジェル達の肖像画だな。あいつら、こんなもの飾って何のつもりだ? window.onload = function(){ var iframe = document.getElementsByTagName("iframe")[0]; iframe.contentDocument.designMode = "on"; iframe.contentDocument.addEventLi…

iframe

iframeの親のwindowを見る方法 parent == 親のwindow jQueryでcontentWindowを参照する $('iframe')[0].contentWindow //window $('iframe').contents()[0] //document $('iframe').contents().find('body')[0] //body $('iframe').contents().find('html')[…

table

表を作るタグ コピペ <table> <tr> <th></th> </tr> <tr> <td></td> </tr> </table>

textarea

属性 格納される値 参考 value 入力されている文字列 http://pochi.orz.ne.jp/oasis/archive_197.htm

onchange

selectのonchangeは値が変わる前に実行されるっぽい。