在$(this)选择器后选择特殊选择器

时间:2015-05-29 06:59:37

标签: javascript jquery html jquery-selectors

例如我有这段代码

<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;不起作用

那么你们有什么建议我应该做什么?

2 个答案:

答案 0 :(得分:8)

您可以按照以下方式使用它:

$(' > div', $(this))

文档:http://api.jquery.com/child-selector/

对于直接子元素,您可以使用children

$(this).children('div')

文档:http://api.jquery.com/children/

使用find

$(this).find(' > div')

文档:http://api.jquery.com/find/

Demo

答案 1 :(得分:6)

您可以将context to jQuery与选择器一起传递

$(' > div ', this )

或使用children()之类的

$(this).children('div')

但您的解决方案可以完成

&#13;
&#13;
$(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;
&#13;
&#13;