Javascript - Change html tag type

后端 未结 8 1172
说谎
说谎 2020-11-30 14:03

i have a question, can i replace html tag to another ?

But i don\'t want to make the content blank. like this:

content<         


        
8条回答
  •  夕颜
    夕颜 (楼主)
    2020-11-30 14:30

    sure, but why?

    var a = ​document.getElementsByTagName('a');
    var src, el, attrs;
    for(var i=0,l=a.length;i

提交回复
热议问题