QT5.3 加载网页步骤

1. 新建工程

2.在.pro中 添加

QT += webkitwidgets
3.在mainWindow中添加代码
        QRect rect(0, 0, 1440, 900);
        web = new QWebView(this);
        web->setGeometry(rect);
        QWebSettings::globalSettings()->setAttribute(QWebSettings::PluginsEnabled, true);
        web->settings()->setAttribute(QWebSettings::PluginsEnabled, true);
        web->load(QUrl("http://www.w3school.com.cn/tiy/t.asp?f=html5_audio"));
        web->show();

你可能感兴趣的:(html5)