Qt:如何访问 WebKit 页面上的实际小部件?
有没有办法使用 Qt 访问 WebKit 页面上由 INPUT
和 SELECT
生成的小部件?
与此相关的是,WebKit 是否提供这些小部件,或者是否委托给 Qt 来生成它们?
Is there a way to access the widgets generated by INPUT
and SELECT
on a page in WebKit, using Qt?
On a related note, does WebKit provide these widgets, or does it delegate back to Qt to generate them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
没有“小部件”。较新的浏览器会自行渲染所有元素以允许叠加等。
如果您想操作它们,请使用 DOM。
There are no "widgets". Newer browsers render all elements themselves to allow overlays etc.
If you want to manipulate them use the DOM.
QWebView 中的所有内容都不使用传统的 Qt 小部件系统。它只是 HTML,由 WebKit 呈现。但是您可以使用 evalJS 函数访问 html。代码示例:
Everything inside in QWebView does not use the conventional Qt widget system. It's only HTML, rendered by WebKit. But you can access to html by using the evalJS function. Example of code: