下記のようにgetBoundingClientRect()で要素の座標を取得することはできたのですが、
あくまでHTML構造内での座標になっているのかIEのスクリーンからみた座標が取れませんでした。
VBS
1posTop = dom.getBoundingClientRect().top 2posRight = dom.getBoundingClientRect().right 3posLeft = dom.getBoundingClientRect().left 4posBottom = dom.getBoundingClientRect().bottom
スクリーンからみた座標の取得はどのように行えばよいのでしょうか?
あなたの回答
tips
プレビュー