关于jquery选择标记

时间:2011-04-05 11:43:10

标签: jquery html struts2

我正在使用struts2和jQuery。

以下是我用JSP编写的代码:

<s:select o name="mfgDimensions" list="{'Product','Station','Test','AssemblyLine','Operator','Debug Mode'}" multiple="true" headerKey="" headerValue="Manufacturing Dimensions" size="3"/>

我希望当用户选择标题值时(即在我的情况下为“制造维度”),该值将无法选择...

可以使用jquery或任何其他方式吗?

由于 克里斯

1 个答案:

答案 0 :(得分:0)

    <s:select id="dimension" name="mfgDimensions" list="{'Product','Station','Test','AssemblyLine','Operator','Debug Mode'}" multiple="true" headerKey="" headerValue="Manufacturing Dimensions" size="3"/
onchange="check_value(this.value)"/>


function check_value(value){
if(value=="Manufacturing Dimensions")
  document.getElementById("dimension').value='';
}