当父 div 隐藏后显示时,选择选项不会显示
我有一个嵌套在三个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
发现它与 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.