标签:
def viewweb(self):
text=self.webEdit.text()
if text.trimmed().isEmpty():
QMessageBox.information(self,‘Tip‘,u‘文本为空‘)
else:
import requests as web1
if web1.get(‘http://www.baidu.com‘).status_code:
QMessageBox.information(self,‘Tip‘,u‘亲:如果可以FQ,还是去谷歌搜索吧‘)
QDesktopServices.openUrl(QUrl(u‘http://www.baidu.com/s?wd={0}&ie=utf-8‘.format(text)))
else:
QDesktopServices.openUrl(QUrl(u‘https://www.google.com/?gws_rd=ssl#q={0}‘.format(text)))
标签:
原文地址:http://www.cnblogs.com/mhxy13867806343/p/4299994.html