Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用这个:
void MainWindow::on_webView_linkClicked(const QUrl &arg1) { }
如何设置lineEdit链接文本?我想不通。
lineEdit
如果我对你的理解正确,你有一个类似下面的链接......
<a href="foo.html">bar</a>
..你想获得价值“bar”。如果这就是你想要做的,你不能从那个方法。几个选项,取决于您对页面的控制程度:
<a href="foo.html?text=bar">bar</a>