如何使 QtWebView 中的链接可点击?

发布于 2024-11-28 04:53:54 字数 68 浏览 0 评论 0原文

我正在使用 QtWebView 编写网络浏览器,我使用 html 页面对其进行了测试,但结果发现链接不起作用。我该怎么办?

I'm in the process of writing a web browser with QtWebView, i tested it using an html page but it turns out the links are not working. What do i do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

一生独一 2024-12-05 04:53:54

您应该为 WebView 的页面设置“链接委托策略”,因为它默认为“DontDelegateLinks”。

尝试:

webView.page().setLinkDelegationPolicy(QWebPage.DelegateAllLinks)

并将页面的 link_clicked() 信号连接到适当的插槽。

看看:

http://doc.qt.nokia.com/4.7-快照/qwebview.html#page

http://doc.qt.nokia.com/4.7-snapshot/qwebpage .html#linkDelegationPolicy-prop

http://doc.qt.nokia.com/4.7-snapshot/qwebpage .html#LinkDelegationPolicy-enum

You should set a "link delegation policy" for WebView's page, because it defaults to "DontDelegateLinks".

Try:

webView.page().setLinkDelegationPolicy(QWebPage.DelegateAllLinks)

And connect page's link_clicked() signal to appropriate slot.

Look at:

http://doc.qt.nokia.com/4.7-snapshot/qwebview.html#page

http://doc.qt.nokia.com/4.7-snapshot/qwebpage.html#linkDelegationPolicy-prop

http://doc.qt.nokia.com/4.7-snapshot/qwebpage.html#LinkDelegationPolicy-enum

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文