在web.py中更改按钮图像

时间:2013-06-20 07:02:29

标签: web.py

我的python脚本中有以下代码。如何更改按钮的图像而不是默认的难看的按钮?

import web
from web import form

render = web.template.render('templates/')

urls = ('/','index')

register_form = form.Form(
    form.Textbox("name",size=40, description="Please enter name: "),
    form.Button("Query", type="submit", description="Query")
)

我希望能产生类似的效果:

< button>< img src="index.png">< /img>< /button>

1 个答案:

答案 0 :(得分:0)

html选项允许您输入任何html标签。 :)

form.Button("Query", type="submit", description="Query" html="<img src="hello.png"/)