首页 > 代码库 > Qt开发:Qt中打开网址

Qt开发:Qt中打开网址

两种方法

1.qlabel

拖一个label控件,然后设置如下

ui->label->setText("<a href=http://www.mamicode.com/'http://www.baidu.com'>baidu");>点击就调到页面了。

2.QUrl

引入头文件

#include <QUrl>

然后,比如在某个button的方法里写

QUrl url="http://www.baidu.com";
QDesktopServices::openUrl(url);

点击button就行了。(ps:把http换成file还可以用于定位于文件系统哦)

Qt开发:Qt中打开网址