例如我有这段代码
<script>
$(document).ready(function () {
$('span').each(function () {
$(this).html('<div></div>') ;
if ( $(this).attr('id') == 'W0' ) { $( this > div ?!!! ).text('0') }
if ( $(this).attr('id') == 'W1' ) { $( this > div ?!!! ).text('1') }
if ( $(this).attr('id') == 'W2' ) { $( this > div ?!!! ).text('2') }
});
});
</script>
<span id="W0"></span>
<span id="W1"></span>
<span id="W2"></span>
但是$( this > div )
或$( this ' > div ' )
是错误的选择器&amp;不起作用
那么你们有什么建议我应该做什么?
答案 0 :(得分:8)
您可以按照以下方式使用它:
$(' > div', $(this))
文档:http://api.jquery.com/child-selector/
或强>
对于直接子元素,您可以使用children
:
$(this).children('div')
文档:http://api.jquery.com/children/
或强>
使用find
$(this).find(' > div')
答案 1 :(得分:6)
您可以将context to jQuery与选择器一起传递
$(' > div ', this )
或使用children()之类的
$(this).children('div')
但您的解决方案可以完成
$(document).ready(function() {
var texts = {
W0: '0',
W1: '1',
W2: '2'
}
$('span').each(function() {
$('<div />', {
text: texts[this.id]
}).appendTo(this)
});
});
&#13;
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<span id="W0"></span>
<span id="W1"></span>
<span id="W2"></span>
&#13;