选择 .wrap() 之后的元素
你好,我使用这段代码:
cur = $('input:radio');
cur.wrap('<span class="customRadio"></span>');
我必须做什么才能访问“.customRadio”元素? 我已经尝试过:
cur.parent('.customRadio')
并且
$('.customRadio')
Helo I use this code:
cur = $('input:radio');
cur.wrap('<span class="customRadio"></span>');
what i must to do to acces the '.customRadio' element?
I already tried:
cur.parent('.customRadio')
and
$('.customRadio')
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
它对我来说效果很好 http://jsfiddle.net/QD35Z/
it works fine for me http://jsfiddle.net/QD35Z/
那么wrapper是一个span元素,你可以在jQuery中使用它:
并且您可以访问包装器:
编辑:抱歉,您只能在将包装器包装到目标元素之前访问包装器。包裹在目标周围的实际元素不是您有权访问的元素。
Then wrapper is a span element and you can use it in jQuery:
And you have access to the wrapper:
EDIT: Sorry, you can only access the wrapper before you wrap it around your target element. The actual element wrapped around the target is not the one you have access to.
并使用
最接近的
?And by using
closest
?