我可以通过以下方式获取WPF中webbrowser控件的选定文本:
IHTMLDocument2 doc1 = webBrowser.Document as IHTMLDocument2;
IHTMLDocument3 doc = webBrowser.Document as IHTMLDocument3;
IHTMLSelectionObject currentSelection = doc1.selection;
if (doc1.selection.type == "Text")
{
IHTMLTxtRange range = (IHTMLTxtRange)doc1.selection.createRange();
}
这很好用,如果我将range.text的值设置为其他值,则会更改文本的值。我遇到的唯一问题是在Gmail等网页上有一些WYSIWYG编辑器,selection.type总是“无”。我怀疑这是因为文本编辑器在技术上是一个子文档。我不确定如何查找子文档并检查文本是否被选中。谁能帮我?谢谢!
答案 0 :(得分:2)
您可以检查document.activeElement是否为一个框架且contentWindow属性(document.activeElement.contentWindow != null
)然后您可以使用contentWindow.document
来到框架的内部document
。递归执行此操作,直到找到包含document.selection != null
的框架。
为了说明这一点:
main.html中:
<!DOCTYPE html>
<body>
<iframe src="iframe.html"></iframe>
</body>
Iframe.html的:
<!DOCTYPE html>
<head>
<script>
window.onload = function()
{
window.focus();
document.execCommand("SelectAll", false);
}
</script>
</head>
<body contentEditable="true">
This is editable
</body>
C#:
var text = this.wb.Document.InvokeScript("eval", new object[] {
"document.activeElement.contentWindow.document.selection.createRange().text" });
MessageBox.Show(text.ToString());
节目:
这是可编辑的