Skip to content

Jquery 选择器

ythy edited this page Aug 18, 2017 · 5 revisions

注意事项

  1. 相同元素删除后再添加, 原选择无效,

    const $elem = $('span');  
    $elem.empty();  
    $('span').appendTo('body');  
    

    $elem 此时无效

Clone this wiki locally