关于jquery select标签

发布于 2024-10-30 01:18:55 字数 367 浏览 1 评论 0原文

我正在使用 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 或任何其他方式吗?

谢谢 克里斯

I'm using struts2 and jQuery.

Following is my code written in JSP:

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

I want when user will going to select header value (i.e in my case "Manufacturing Dimensions") the value will not be get selectable...

can it be possible with jquery or any other way??

Thanks
kris

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

屋檐 2024-11-06 01:18:55
    <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='';
}
    <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='';
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文