isindex
适用DTD:Transitional Frameset 适用浏览器:All
释义
搜索的输入框(isindex prompt)
语法
<isindex 属性="属性值">
说明
isindex用来建立搜索字词输入的单行文字输入框,外观上看起来是由一个单行文本框加上上下两条水平线构成。索引框不需要按钮,按回车键即可提交
isindex元素为W3C非推荐元素,建议以
input元素取代
isindex在HTML中为空元素,在XHTML中需在起始标签右括号前加上“/”符号作为结束,或者isindex元素也加上终止标签
属性
属性 |
属性值 |
说明 |
① action |
URI |
数据处理程序的URI地址 |
② prompt |
任意字符串 |
搜索输入框的标签文字 |
③ value |
任意字符串 |
设置搜索框的默认值。仅IE可用 |
④ contenteditable |
true|false |
用户是否可以编辑搜索输入框内的文字, true表示可以修改,false表示不可以编辑。仅IE可用 |
⑤ disabled |
空值|disabled |
布尔属性,设置当前索引搜索为禁用状态。仅IE可用 |
⑥ 通用属性:id、class、title、style、dir、lang、xml:lang |
nbsp;
示范
<isindex prompt="Enter your search phrase:">
范例
下面的例子显示了XHTML文件基础结构:
运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素isindex</title>
</head>
<body>
DEPRECATED EXAMPLE:
The following ISINDEX declaration:
<ISINDEX prompt="Enter your search phrase: " value="search here">
could be rewritten with INPUT as follows:
<FORM action="..." method="post">
<P>Enter your search phrase: <INPUT type="text"></P>
</FORM>
</body>
</html>
isindex元素是文本输入域的一种较早格式,允许用户通过输入关键字搜索一个索引。但是此元素现在不赞成使用,这里只是为了完整起见才收录了它。此元素通常包含在网页的部分。
参阅
form
input
select
button
textarea
fieldset