タグ

関連タグで絞り込む (1)

タグの絞り込みを解除

togetterとJavascriptに関するtoritori0318のブックマーク (1)

  • new Image() と createElement('img') の違い

    think49 @think49 @azu_re new Image() の特徴。width, height を引数に取れます。HTMLImageElement を必ず返します。new Image() は常にグローバル参照になるので低速です。http://goo.gl/R2EN 2010-10-01 00:40:07 think49 @think49 @azu_re createElement の特徴。名前空間を指定できません。名前空間の存在しないXHTML文書(Documentのインスタンス)で createElement('img') すると Element を返します。 2010-10-01 00:40:24 think49 @think49 @azu_re document がローカル変数に格納されているなら、createElement は高速です。個人的には HTMLDocume

    new Image() と createElement('img') の違い
  • 1