How to get the Value from a input field in QWebView
在Qt中,我在屏幕上有一个QWebView
在Web视图中的站点有一个输入字段,我想从输入字段获取value属性并将其存储在QString
基本上我问的是如何存储值QString
中的输入字段
From your QWebView get the QWebFrame (eg ui->webView()->page()->currentFrame()->toHtml();
) and then used QwebFrame::findAllElements or QWebFrame::findFirstElement. This will give you a QWebElement and you can use the attribute method to get the value attribute.
您应该使用evaluateJavaScript(“this.value”)从属性动态获取calues:http://www.qtforum.org/article/34091/solved-get-html-dom-dynamic-value-via-qtwebview.html# post109395
链接地址: http://www.djcxy.com/p/39314.html上一篇: QWebView纯文本文档样式
下一篇: 如何从QWebView中的输入字段获取值