How to get < span> value?

前端 未结 7 2086
温柔的废话
温柔的废话 2021-02-07 10:41

There are a piece of code,but can not use tag.

So,how do I get to the 1 2 3 4?

7条回答
  •  南笙
    南笙 (楼主)
    2021-02-07 11:39

    Pure javascript would be like this

    var children = document.getElementById('test').children;
    

    If you are using jQuery it would be like this

    $("#test").children()
    

提交回复
热议问题