pyqt:点击按钮打开网站 ——转载

可以Python库:webbrowser

import webbrowser webbrowser.open('http://stackoverflow.com')

上面的是用默认浏览器打开,如果想要Chrome打开,可以这样写:

def openUrl(url):  
    try:
        webbrowser.get('chrome').open_new_tab(url)
    except Exception as e:
        webbrowser.open_new_tab(url)

 转载自:http://zgljl2012.com/pyqt-zai-liu-lan-qi-shang-dian-ji-an-niu-da-kai-wang-zhan/

你可能感兴趣的:(python总结)