gpt4 book ai didi

javascript - 使用通配符选择自定义值

转载 作者:行者123 更新时间:2023-12-02 16:11:29 25 4
gpt4 key购买 nike

在这个 fiddle 中,我尝试选择属性值。因此 elems var 应包含值 listen,submitClickedlisten,textEntered

http://jsfiddle.net/adrianfiddleuser/g2Rxc/128/

来源:

<input tag="listen,submitClicked" id="click" type="submit" value="click"/>
<input tag="listen,textEntered" id="test" type="textbox" value="test"/>

var elems = $('p[^listen]')

console.log(elems)

但是通配符似乎不起作用。如何选择以“listen”开头的自定义值并将这些值添加到数组中?

最佳答案

您没有正确使用 ^= 属性选择器。您需要指定 tag 属性:

p[tag^=listen]

[att^=val]

Represents an element with the att attribute whose value begins with the prefix "val". If "val" is the empty string then the selector does not represent anything.

W3C's Selectors Level 3

此外,tag 不是有效的 HTML 属性,您可能需要考虑使用 a data-* attribute相反。

关于javascript - 使用通配符选择自定义值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30132935/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com