If I use jquery like this ``` dom=$(doc) //doc is a string of html code dom.find(selector).children("input").each(e=>{ console.log($(this).text()); }); ``` In this code segement,I can't use this to get the proper text of the input element.
If I use jquery like this
In this code segement,I can't use this to get the proper text of the input element.