Windows 8.1 / Internet Explorer 11 にアップグレードするまで問題なく動作していた次のコードが、「未定義または null 参照のプロパティ 'createRange' を取得できません」というエラーをスローするようになりました。
var SelectedData = window.external.menuArguments.document.selection.createRange().text;
これに対する修正/回避策はありますか?
*以下の質問は、まだ機能していない新しいコードで更新されました....
<html><head><title>-</title><script type="text/JScript">
function Launch()
{
var TheSelection = document.getSelection();
if(TheSelection != null)
{
.... do a bunch of stuff
}
window.close();
}
</script></head><body onload="Launch();" </body></html>
window.getselection; も試しました。window.getselection(); window.getselection().tostring();
これらのどれも機能していないようです...???