隐藏联系表单中的元素

发布于 2024-11-02 07:05:39 字数 1406 浏览 4 评论 0原文

关于联系表单中的隐藏 div...

“select2”和“select3”JavaScript 中的 else 未正确编写,我希望有人能指出正确的方向。

使用 jQuery,我有这样的事情:

<script type="text/javascript">
$(document).ready(function(){
$("#select1").change(function(){
    if ($(this).val() == "retouching" ) {
        $("#hide1").slideDown("fast");
    } else {
        $("#hide1").slideUp("fast");  
    } 
});

$("#select2").change(function(){
    if ($(this).val() == "fashion" || $(this).val() == "beauty" || $(this).val() == "product" || $(this).val() == "architectural") {
        $("#hide2").slideDown("fast");
    } else {
        $("#hide1").slideUp("fast") || $("#hide2").slideUp("fast"); 
    }
});
$("#select1").change(function() {
    if ($(this).val() == "photography" ) {
        $("#hide3").slideDown("fast");
    } else {
        $("#hide3").slideUp("fast");
    } 
});

$("#select3").change(function(){
    if ($(this).val() == "fashion" || $(this).val() == "beauty" || $(this).val() == "product") {

        $("#hide4").slideDown("fast");
    } else {
        $("#hide4").slideUp("fast") || $("#hide3").slideUp("fast");
    }
});
$("#select1").change(function(){
    if ($(this).val() == "studio" ) {
        $("#hide5").slideDown("fast");
    } else {
        $("#hide5").slideUp("fast");
    }    
});
});
</script>

由于 select2 和 select3 中有两个“隐藏”,如果用户决定从 select1 中选择其他内容,我将无法隐藏它们。

Regarding hidden divs in a contact form...

The else in "select2" and "select3" JavaScript is not written correctly and I'm hoping someone can point me in the right direction.

Using jQuery, I have something like this:

<script type="text/javascript">
$(document).ready(function(){
$("#select1").change(function(){
    if ($(this).val() == "retouching" ) {
        $("#hide1").slideDown("fast");
    } else {
        $("#hide1").slideUp("fast");  
    } 
});

$("#select2").change(function(){
    if ($(this).val() == "fashion" || $(this).val() == "beauty" || $(this).val() == "product" || $(this).val() == "architectural") {
        $("#hide2").slideDown("fast");
    } else {
        $("#hide1").slideUp("fast") || $("#hide2").slideUp("fast"); 
    }
});
$("#select1").change(function() {
    if ($(this).val() == "photography" ) {
        $("#hide3").slideDown("fast");
    } else {
        $("#hide3").slideUp("fast");
    } 
});

$("#select3").change(function(){
    if ($(this).val() == "fashion" || $(this).val() == "beauty" || $(this).val() == "product") {

        $("#hide4").slideDown("fast");
    } else {
        $("#hide4").slideUp("fast") || $("#hide3").slideUp("fast");
    }
});
$("#select1").change(function(){
    if ($(this).val() == "studio" ) {
        $("#hide5").slideDown("fast");
    } else {
        $("#hide5").slideUp("fast");
    }    
});
});
</script>

Since there are two "hides" in select2 and select3, I'm having trouble hiding both of them if user decides to pick something else from select1.

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

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

发布评论

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

评论(2

踏月而来 2024-11-09 07:05:39

试试这个:

$("#hide4").slideUp("fast");
$("#hide3").slideUp("fast");  

而不是

$("#hide4").slideUp("fast") || $("#hide3").slideUp("fast");  

Try this:

$("#hide4").slideUp("fast");
$("#hide3").slideUp("fast");  

instead of

$("#hide4").slideUp("fast") || $("#hide3").slideUp("fast");  
执妄 2024-11-09 07:05:39

这是要做什么?

$("#hide1").slideUp("fast") || $("#hide2").slideUp("fast"); 

它(和类似的代码)可能应该是:

$("#hide1").slideUp("fast");
$("#hide2").slideUp("fast"); 

What is this supposed to do?

$("#hide1").slideUp("fast") || $("#hide2").slideUp("fast"); 

It (and similar code) should probably be:

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