标签:
QWebView 显示本地HTML文件的时候,如果直接使用
webView->load(QUrl(QString("file:///c:\\a.html"));
可能会导致a.html中有些使用相对路径的图片、js文件不能正常加载。
使用如下代码即可
webView->load(QUrl::fromLocalFile("c:\\a.html"));
文章来源:http://blog.csdn.net/u010953991/article/details/9198219
标签:
原文地址:http://www.cnblogs.com/guobbs/p/4276885.html