0
$(document).ready(function () {
    $('#createGallery').hide();

    $("#newGallery").click(function () {
        $("#createGallery").show('slow');
    });
    $("#gallerySelect > option").not("#newGallery").click(function () {
        $("#createGallery").hide('slow');
    });
});

我不知道为什么。似乎很容易。我的 HTML 在 HAML 中。但是如果您不知道 HAML 是什么,它很容易理解。我的 HAML 内容如下:

        #createGallery
          %span{ :style => "color:#1B75BC; font-size: 15px;" }
            new gallery
          %br
          %form{ :action => ""}
            %input{ :name => "tabname", :type => "text", :rows => "1", :cols => "30", :style => "height: 15px; width: 260px; margin-right: 40px;"}

        %span{ :style => "color:#1B75BC; font-size: 15px;" }
          gallery

        %form{ :action => ""}
          %select#gallerySelect{ :name => "Choose Gallery", :style => "width:260px" }
            %option{ :selected => "selected", :value => "QuickFact" }
              Choose Gallery
            %option{ :value => "QuickFact"}
              My Interior Design
            %option#newGallery{ :value => "QuickFact" }
              New Gallery
        %br
4

3 回答 3

4

我不相信 OPTION 元素有点击事件。您需要将点击处理程序附加到 SELECT 元素,然后检查选择的选项。\

(免责声明:空气编码)

$(document).ready(function(){
    $('#createGallery').hide();
    $("#gallerySelect").click(function () {
        if (this.options[this.selectedIndex].id == 'newGallery') {
            $("#createGallery").show('slow');
        } else {
            $("#createGallery").hide('slow');
        }
    });
});
于 2009-05-08T17:23:05.670 回答
0

这将有助于获取当前页面的 HTML,以及更多地了解问题。

  • 哪个版本的IE有问题?
  • 只是隐藏/显示#createGAllery 不起作用,还是点击事件根本没有触发?
  • 做什么alert($("#gallerySelect > option").not("#newGallery").length);alert($("#gallerySelect > option").length);返回?
于 2009-05-08T17:32:01.063 回答
0

您所有的选项元素都具有相同的值......这通常不是这个元素的使用方式。此外,如果您要立即隐藏元素,则可以在 HAML 中将其设置为这样(当然,除非您希望非 JS 用户默认看到它)。如果您按照以下方式做一些事情会更有意义:

$(function(){ 
    $("#gallerySelect").bind('change',function () {
        if($(this).val() == 'newGallery') {
            $("#createGallery").show('slow');   
        } else {
            $("#createGallery").hide('slow');
        }    
    });

});

使用 HAML 是这样的:

    #createGallery{:style => "display:none;" }
      %span{ :style => "color:#1B75BC; font-size: 15px;" }
        new gallery
      %br
      %form{ :action => ""}
        %input{ :name => "tabname", :type => "text", :rows => "1", :cols => "30", :style => "height: 15px; width: 260px; margin-right: 40px;"}

    %span{ :style => "color:#1B75BC; font-size: 15px;" }
      gallery

    %form{ :action => ""}
      %select#gallerySelect{ :name => "Choose Gallery", :style => "width:260px" }
        %option{ :selected => "selected", :value => "chooseGal" }
          Choose Gallery
        %option{ :value => "designInterior"}
          My Interior Design
        %option{ :value => "newGallery" }
          New Gallery
    %br
于 2009-05-08T18:06:55.050 回答