下拉菜单不适用于新添加的元素
我在一个页面上有多个 dl 元素。在每个标签的末尾,我有一个 dd 标签作为下拉列表,其中包括元素的选项(如编辑、删除等)。
这是下拉列表的 jQuery:
$('dd.optiuni').mouseover(function() {
$(this).find('ul').show();
});
$('dd.optiuni').mouseout(function() {
$('dd.optiuni ul').hide();
});
现在在 dl 标签之前,我有一个输入和一个提交按钮添加新的 dls 并使用 jQuery 添加它们,而无需重新加载页面。问题是,添加新元素后,最后的dd好像不起作用。
如何使我以前的代码识别出新元素已添加到页面?
$(function() { // ie7 z-index fix
var zIndexNumber = 1000;
$('dl').each(function() {
$(this).css('zIndex', zIndexNumber);
zIndexNumber -= 10;
});
});
I have multiple dl elements on a page. At the end of each one I have a dd tag acting as a dropdown which includes options for the element (like edit, delete, etc.)
Here's the jQuery for the dropdown:
$('dd.optiuni').mouseover(function() {
$(this).find('ul').show();
});
$('dd.optiuni').mouseout(function() {
$('dd.optiuni ul').hide();
});
Now before the dl tags I have an input and a submit button to add new dls and use jQuery to add them without reloading the page. The problem is that after the new element is added, the dd at the end doesn't seem to work.
How can I make my previous code recognize that new elements have been added to the page?
$(function() { // ie7 z-index fix
var zIndexNumber = 1000;
$('dl').each(function() {
$(this).css('zIndex', zIndexNumber);
zIndexNumber -= 10;
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
.live
或.delegate
:Use
.live
or.delegate
: