本文整理匯總了Python中webhelpers2.html.HTML.textarea方法的典型用法代碼示例。如果您正苦於以下問題:Python HTML.textarea方法的具體用法?Python HTML.textarea怎麽用?Python HTML.textarea使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類webhelpers2.html.HTML
的用法示例。
在下文中一共展示了HTML.textarea方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: textarea
# 需要導入模塊: from webhelpers2.html import HTML [as 別名]
# 或者: from webhelpers2.html.HTML import textarea [as 別名]
def textarea(name, content="", id=NotGiven, **attrs):
"""Create a text input area.
Example::
>>> textarea("body", "", cols=25, rows=10)
literal(u'<textarea cols="25" id="body" name="body" rows="10"></textarea>')
"""
attrs["name"] = name
_set_id_attr(attrs, id, name)
return HTML.textarea(content, **attrs)