首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > CSS >

中转:html:select标签用法

2012-08-26 
转发:html:select标签用法?html:select标签用法/html:select?代码解释:html:select propertypersonne

转发:html:select标签用法

?

html:select标签用法</html:select>

?

代码解释:

<html:select property="personnelId">?:

该部分代码最终返回的值存储在personnelId变量中;

<html:option value="">请选择</html:option>?
默认选项,值为空,为了满足用户不想选择任何选项的需求;

<html:options collection="personList" property="personId" labelProperty = "personName"/>?:
<html:options>标签会自动根据参数产生多个<option>。其中,collection属性指的是待迭代的集合变量,property设定的是该<option>的value,labelProperty设定的是页面看到的内容。
注:personList必须是Collection类型的,而且封装的是一个包含personId,personName属性的对象。?

?

动态用法二

有时候用标签的限制太多就用下面这个:

<SELECT name="deid">

<logic:present name="departarray1">
<logic:iterate id="depart" name="departarray1">?
<option value="<bean:write name="depart" property="deId"/>">?
<bean:write name="depart" property="deName"/>?
</option>?
</logic:iterate>

</logic:present>
</SELECT>

?

代码解释:

<logic:present name="departarray1">?:

判断是否存在departarray1对象,如果存在的话,就执行嵌套标签之中的内容,如果不存在就跳过。

<logic:iterate id="depart" name="departarray1">?:

从departarray1集合对象中取出一个对象,并存入对象变量depart中。注:此处的departarray1必须是一个集合类型变量。depart相当于一个局部变量,是用来存储每次取出来的对象的。

<option value="<bean:write name="depart" property="deId"/>">?:

每一个<option>元素选项的value都是<bean:write name="depart" property="deId"/>,含义是depart对象的deID属性值。

<bean:write name="depart" property="deName"/>?:

这是每一个<option>元素在浏览器上的显示,道标depart对象的deName属性值。

你可以在页面里面定义一个变量,然后动态改变这个变量,在函数里面判断这个变量的值后,再设置selected,如:?

form1.myselected.options[i].selected = true

<script>?
var dymanicValue = 'yourDymanicValue';?
function initSel() {?
var oSel = document.getElementById('sel');?
for (var i = 0; i < oSel.length; i++) {?
if (dymanicValue == oSel[i].value) {?
oSel[i].selected = true;?
break;?
}?
}?
}?
window.onload = initSel;?
</script>?
<select id='sel'></select>

  1. ??????????????????????????? selectObj.options[i].selected =?????????? } ??
  2. ????? }?????????????????? ??
  3. } ??
  4. ??????????????????????????? selectObj.options[i].text = itemText; ??
  5. ?????????????????????? } ??
  6. ????? }??? ??
  7. ????? ??
  8. } ??
  9. ??
  10. {?? ??
  11. ?????????? selectObj.options.add(varItem); ??
  12. ????????????
  13. ??????????????????????????? selectObj.remove(i); ??
  14. ?????????????????????? } ??
  15. ????? }????? ??
  16. } ??
  17. ??
  18. ??
  19. ??
  20. (} ??
  21. ??
  22. ??
  23. ????? selectObj.options.length = 0; ??
  24. } ??
  25. ??
  26. myselect.name =?myselect.onchange =?} ??
  27. itemText[0] =?itemValue[1] =??? myselect.options[i] =?myselect.options[0].selected =?document.documentElement.appendChild(myselect); ??
  28. ??
  29. } ??
  30. ??
  31. ?? HSSelectItem(type,2); ??
  32. }?? HSInsertItem(type,?? HSDeleteItem(type,4); ??
  33. }?? HSCurText(type); ??
  34. }?? HSClear(type); ??
  35. }?? HSCreate(); ??
  36. }????????????? ??
  37. }??

HTML代码:

  • ????</select>???来自:http://hi.baidu.com/gddennis/blog/item/eab0f3093d3cc99d0a7b8292.html