当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Ruby HtmlExtension.image_button用法及代码示例


本文简要介绍ruby语言中 CGI::HtmlExtension.image_button 的用法。

用法

image_button(src = "", name = nil, alt = nil)

将图像按钮输入元素生成为字符串。

src 是用于按钮的图像的 URL。 name 是输入名称。 alt 是图像的替代文本。

或者,可以将属性指定为散列。

image_button("url")
  # <INPUT TYPE="image" SRC="url">

image_button("url", "name", "string")
  # <INPUT TYPE="image" SRC="url" NAME="name" ALT="string">

image_button("SRC" => "url", "ALT" => "string")
  # <INPUT TYPE="image" SRC="url" ALT="string">

相关用法


注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 HtmlExtension.image_button。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。