如何从QWebView中的输入字段获取值
在Qt中,我在屏幕上有一个QWebView
在Web视图中的站点有一个输入字段,我想从输入字段获取value属性并将其存储在QString
基本上我问的是如何存储值QString
中的输入字段
从QWebView获取QWebFrame(例如ui->webView()->page()->currentFrame()->toHtml();
),然后使用QwebFrame :: findAllElements或QWebFrame :: findFirstElement。 这会给你一个QWebElement,你可以使用attribute方法来获取value属性。
您应该使用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/39313.html