QString script = "var iframe = document.activeElement;" "var iframeDoc = iframe.contentWindow.document;" "var attrValue = iframeDoc.activeElement.Name;" "attrValue;"; //page()->runJavaScript(script, [&eTagName2](const QVariant &v) { eTagName2 = v.toString(); }); page()->runJavaScript(script, [this](const QVariant& result) { QString attrValue = result.toString(); // ????????? });返回invalid值
时间: 2024-02-14 10:10:48 浏览: 208
qt串口服务器源代码.7z
问题可能在于您正在尝试访问 iframe 内部的 `activeElement` 属性,但是 iframe 中并没有元素被选中。这会导致 JavaScript 返回 `undefined` 或 `null`,从而导致 QVariant 转换为 QString 时得到 `invalid` 值。
您可以在运行 JavaScript 之前检查 iframe 是否具有焦点元素,例如:
```cpp
page()->runJavaScript("var iframe = document.activeElement;"
"var iframeDoc = iframe.contentWindow.document;"
"var activeElem = iframeDoc.activeElement;"
"activeElem ? activeElem.Name : null;",
[this](const QVariant& result) {
QString attrValue = result.toString();
if (attrValue == "null") {
// 没有选中元素
} else {
// 选中元素的 Name 属性值为 attrValue
}
});
```
如果 iframe 中有选中元素,将返回该元素的 `Name` 属性值。否则,返回 `null`。
阅读全文