当父 div 隐藏后显示时,选择选项不会显示

发布于 2024-10-23 13:51:06 字数 1176 浏览 2 评论 0原文

我有一个嵌套在三个 div 内的选择框,如下所示:

<div id="entry">
    <div id="entryContent">           
         <div>
              <div>
                   Name:
                   <select name="ddlName" id="ddlName">
                    <option value="Name1">Name1</option>
                    <option value="Name2">Name2</option>
                    <option value="Name3">Name3</option>
                   </select>
              </div>
              ...
         </div>
         ...
    </div>
    ...
</div>

CSS:

#entry
{
    position:absolute;
    width:527px;
    height:364px;
    left:69px;
    top:214px;
    z-index:2;
    display:none;
}

以下 jquery 代码是根据单击某些按钮来显示/隐藏条目 div:

$("document").ready(function() {
    $("#addButton").live("click", function(event) {
        $("#entry").show();
    })
    $("#closeEntry").live("click", function(event) {
        $("#entry").hide();
    })
})

问题是,当我第一次单击添加按钮时,它显示条目 div 和选择框工作正常。单击关闭按钮并再次单击添加按钮后,选择框将不允许我选择其他选项。在 firefox 下工作正常,但在 ie7 下不行。

I have a select box that is nested inside three divs as such:

<div id="entry">
    <div id="entryContent">           
         <div>
              <div>
                   Name:
                   <select name="ddlName" id="ddlName">
                    <option value="Name1">Name1</option>
                    <option value="Name2">Name2</option>
                    <option value="Name3">Name3</option>
                   </select>
              </div>
              ...
         </div>
         ...
    </div>
    ...
</div>

The CSS:

#entry
{
    position:absolute;
    width:527px;
    height:364px;
    left:69px;
    top:214px;
    z-index:2;
    display:none;
}

The following jquery code is to show/hide the entry div based on clicking certain buttons:

$("document").ready(function() {
    $("#addButton").live("click", function(event) {
        $("#entry").show();
    })
    $("#closeEntry").live("click", function(event) {
        $("#entry").hide();
    })
})

The problem is that when I first click the add button, it shows the entry div and the select box works fine. After I click the close button and click the add button again, the select box will not let me select another option. It works fine in firefox but not ie7.

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

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

发布评论

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

评论(1

困倦 2024-10-30 13:51:06

发现它与 jQuery UI CSS 文件有关。当我排除它时,就可以了。当我向 hide() 和 show() 函数添加效果时,它可以正常工作。

Found that it has something to do with jQuery UI CSS file. When I exclude it, the works. When I added an effect to the hide() and show() function, then it worked properly.

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