I've got a little problem: I don't know whether it is possible to select all DOM nodes with some attribute patterns using jQuery.
For example, I need to select all nodes with `id` attribute set to a string starting with `"_dom"`.
I've found something like this:
$("input[name^='news']").val("news here!");
but as far as I can see, this code applies the sample to the `` nodes only.
Can I use wildcards for the node names?
以上就是Can I select DOM nodes with XPath attribute patterns using jQuery?的详细内容,更多请关注web前端其它相关文章!