Moss2007 使用下拉菜单,选择选项时显示文本框

发布于 2024-11-08 16:37:54 字数 149 浏览 0 评论 0原文

目前正在使用 moss 2007,并且遇到了下拉问题。如果选择下拉列表中的第三个选项,那么它应该在下面显示三个文本框。我知道它必须与 Jquery 一起使用,但对 jquery 来说相当陌生。因此,如果有人可以为我提供上述问题的代码,将会很有帮助!

问候 SP.开发者

Currently working moss 2007, and having a issue with drop down. If a 3rd option in a drop down is selected then it should show three text boxes below. I know it has to be work with Jquery, but quite new to the jquery. So if any one could provide me code to above issue would be helpful!

Regards
SP.Developer

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

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

发布评论

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

评论(1

鹿童谣 2024-11-15 16:37:54

这应该足够了:

$("#theSelect").change(function() {
    if($(this).find("option:eq(2)").is(":selected")) {
        $(".theTextBoxes").show();
    } else {
        $(".theTextBoxes").hide();
    }
}).change();

此处演示。

更短的方法:

$("#theSelect").change(function() {
    $(".theTextBoxes").toggle($(this).find("option:eq(2)").is(":selected"));
}).change();

此处演示。

This should suffice:

$("#theSelect").change(function() {
    if($(this).find("option:eq(2)").is(":selected")) {
        $(".theTextBoxes").show();
    } else {
        $(".theTextBoxes").hide();
    }
}).change();

Demo here.

Shorter way:

$("#theSelect").change(function() {
    $(".theTextBoxes").toggle($(this).find("option:eq(2)").is(":selected"));
}).change();

Demo here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文