2010-08-01から1ヶ月間の記事一覧

イマジネイション

input type="image" って画像貼るだけじゃなくて、画像を使った送信ボタンを貼る、ってことなのね。 http://www.tagindex.com/html_tag/form/input_image.html

メアド書式チェック

xxx@xxxxx.xxxxx でダメだった。Flex。なんでかなー? http://livedocs.adobe.com/flex/201_jp/langref/mx/validators/EmailValidator.html#invalidDomainErrorほう。 「接尾辞 (最上位のドメイン) の長さが 2 文字、3 文字、4 文字または 6 文字ではないと…

Firefoxfuck

innerTextがない textContentが代わりにあるみたいhttp://www.openspc2.org/JavaScript/Ajax/Ajax_study/chapter05/004/index.htmlfunction getInnerText(element){ innerText = element.innerText; if(typeof innerText == 'undefined'){ innerText = eleme…

include_path

include_pathを相対で指定してると、chdirした場合にそこからの相対になっちゃうのね。 .htaccessとかで相対指定しててかつchdirする必要がある場合、処理の最初で絶対に変換して再セットするのがいいんかな。あとPATH_SEPARATORって定数があるんだって。追…