定義
使瀏覽器顯示一個(gè)對(duì)話框,提示用戶輸入單行文本。
causes the browser to display a dialog window that prompts the user for a single line of input.
注釋
在 html 4 中,此元素是不推薦使用的,推薦使用 input 元素來取代它。isindex 的 tagname 屬性將返回 input。
isindex 元素屬于文檔的 body 中。
此元素在 internet explorer 3.0 及以上版本的 html 中可用,在 internet explorer 4.0 及以上版本的腳本中可用。
此元素被看作 form 對(duì)象中的一個(gè) input 對(duì)象。要使用腳本訪問該元素,你必須使用 document 對(duì)象的 all 集合。例如,要訪問一個(gè) isindex 對(duì)象的 disabled 屬性的語法為:
document.all.oisindex.disabled=false;
此元素是一個(gè)塊元素。
此元素需要關(guān)閉標(biāo)簽。
in html 4, this element is deprecated; input is recommended for use instead. the tagname property for isindex returns input.
the isindex element belongs in the body of the document.
this element is available in html as of internet explorer 3.0, and in script as of internet explorer 4.0.
this element is treated as an input object inside a form object. to access the element from script, you must use the all collection of the document object. for example, the syntax for accessing the disabled property of a isindex object is:
document.all.oisindex.disabled=false;
this element is a block element.
this element requires a closing tag.
示例代碼
<isindex prompt=enter a keyword to search for in the index>
標(biāo)準(zhǔn)信息
該對(duì)象已不建議使用,將可能在今后html標(biāo)準(zhǔn)中廢棄。
this object is deprecated in html.