Removing data attributes from HTML using jQuery

后端 未结 4 1311
终归单人心
终归单人心 2021-02-14 13:10

Can\'t seem to get this one to work...

I have a page that hides certain links. When the DOM is loaded, I\'m using jQuery to toggle some of those elements. This is drive

4条回答
  •  梦谈多话
    2021-02-14 13:40

    Why don't you set the value to a random value or empty variable instead if removeAttr does not work..

    $(this).attr("data-usr" , '');
    
    $(this).prop("data-usr" , '');
    

提交回复
热议问题