<select&>元素中的 <option>标签用于定义列表中的可用选项。
DHTML代码范例
The following example demonstrates the order of event firing for the onactivate and onload events. As each event fires, it appends a string to the div element within the document. the onactivate event fires before the onload event.
<HTML>
<HEAD>
<SCRIPT>
function fnActivate(){
oDIV1.innerHTML += "<BR><BR>The <B>onactivate</B>event, available as of \
Internet Explorer 5.5, fires first on the BODY element."
}
function fnLoad(){
oDIV1.innerHTML += "<BR><BR>The <B>onload</B>event, available as of \
Internet Explorer 4.0, fires after the <i>onactivate</i>event fires \
on the BODY element."
}
</SCRIPT>
</HEAD>
<BODY onactivate="fnActivate()" onload="fnLoad()">
<DIV id="oDIV1"></DIV>
</BODY>
</HTML>
<select>标签定义和用法select 元素可创建单选或多选菜单。当提交表单时,浏览器会提交选定的项目,或者收集用逗号分隔的多个选项,将其合成一个单独的参数列表,并且在将 <select>表单数据提交给服务器时包括 name 属性。
<select>标签可选的属性
属性 值 描述
disabled disabled 规定禁用该下拉列表。
multiple multiple 规定可选择多个选项。
namename规定下拉列表的名称。
sizenumber 规定下拉列表中可见选项的数目。
<select>标签全局属性
<select>标签支持 HTML 中的全局属性。
<select>标签事件属性
<select>标签支持 HTML 中的事件属性。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)