码迷,mamicode.com
首页 > 其他好文 > 详细

QT program tips

时间:2016-06-03 23:13:58      阅读:480      评论:0      收藏:0      [点我收藏+]

标签:qt

1、QT QWebengine运行JavaScript获取图片的数量

pView->page()->runJavaScript("document.getElementsByTagName(\"img\").length", []
(QVariant result) {
qDebug() << result.toString();
});

或者

struct GetElementCountFunctor {
GetElementCountFunctor(){ }
void operator()(const QVariant &result) {
    qDebug() << result.toString();
    }
};

pView->page()->runJavaScript("document.getElementsByTagName(\"img\").length", GetElementCountFunctor());


本文出自 “IT技术分享” 博客,转载请与作者联系!

QT program tips

标签:qt

原文地址:http://watertoeast.blog.51cto.com/8489855/1785967

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!