JQuery, find parent

后端 未结 7 1610
日久生厌
日久生厌 2021-01-31 02:15
$(\'#thisid\').parent(\'li\');
7条回答
  •  北海茫月
    2021-01-31 03:02

    $('#thisid').parents('li')
    

    or if you only want the first one:

    $('#thisid').closest('li')
    

提交回复
热议问题