2009-09-11から1日間の記事一覧

iframeについて

<iframe id=iframeId name=iframeName src='foo.txt' onload='foo(this)'>window.document.getElementById('iframeId')はthisと同じ物で,値は[object HTMLIFrameElement] window.iframeNameはthis.contentWindowと同じ物で,値は[object Window] つまり,idでアクセスしたときとnameでアクセスしたときの参照先は別物。 参照先のUR</iframe>…

カーソル位置取得

IEはselectionStartが使えないのでその対策が必要。 現時点では以下のようにした。 function getpos(obj){ if(obj.selectionStart != undefined) return obj.selectionStart; var range = document.selection.createRange(); if(obj.type == 'textarea'){ va…