鱼C论坛

 找回密码
 立即注册
查看: 4285|回复: 2

tkinter中在text加多个超链接

[复制链接]
发表于 2018-4-29 17:22:28 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能^_^

您需要 登录 才可以下载或查看,没有账号?立即注册

x
本帖最后由 一鱼 于 2018-4-29 21:44 编辑
from tkinter import *
import webbrowser

url =['https://www.hao123.com/','https://www.baidu.com/','https://www.taobao.com/']
name =['hao123','百度','淘宝']

root = Tk()
text =Text(root,width=30,height=5,font=('微软雅黑',15))
text.pack()
text.tag_config('link',foreground='blue',underline=True)
for each in name:
    text.insert(INSERT,each+'\n','link')
    
def show_hand_cursor(event):
    text.config(cursor='arrow')
def show_arrow_cursor(event):
    text.config(cursor='xterm')
##def click(event):
##    webbrowser.open()
mainloop()
超链接.png
我有两个列表,一个包含了url,请问怎样才能实现我分别点击text中的文本能够打开对应的网页?
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复

使用道具 举报

 楼主| 发表于 2018-4-29 21:38:20 | 显示全部楼层
本帖最后由 一鱼 于 2018-4-29 21:52 编辑

好吧,最后还是百度到了原文是这个https://blog.csdn.net/tinym87/article/details/6957438
有需要的可以看看
代码如下:
from tkinter import *
import webbrowser

url =['www.hao123.com','www.baidu.com','www.taobao.com']
name =['hao123','百度','淘宝']

root = Tk()
text =Text(root,width=30,height=5,font=('微软雅黑',15))
text.pack()
text.tag_config('link',foreground='blue',underline=True)

def show_hand_cursor(event):
    text.config(cursor='arrow')
def show_arrow_cursor(event):
    text.config(cursor='xterm')
def click(event,x):
    webbrowser.open(x)
def handlerAdaptor(fun,**kwds):
    return lambda event,fun=fun,kwds=kwds:fun(event,**kwds)
m=0
for each in name:
    text.tag_config(m,foreground='blue',underline=True)
    text.tag_bind(m,'<Enter>',show_hand_cursor)
    text.tag_bind(m,'<Leave>',show_arrow_cursor)
    
    text.insert(INSERT,each+'\n',m)

    text.tag_bind(m,'<Button-1>',handlerAdaptor(click,x=url[m]))
    m+=1
mainloop()
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

发表于 2020-3-13 21:38:00 | 显示全部楼层
event是什么
想知道小甲鱼最近在做啥?请访问 -> ilovefishc.com
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Archiver|鱼C工作室 ( 粤ICP备18085999号-1 | 粤公网安备 44051102000585号)

GMT+8, 2024-11-24 21:06

Powered by Discuz! X3.4

© 2001-2023 Discuz! Team.

快速回复 返回顶部 返回列表