Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はこのようなものを使ってみます:$('input[class=^(copy-photo|copy-attachment)]:last')しかし、うまくいきません。copy-photo任意のアイデア、クラスまたはを使用した単純な正規表現入力で選択する方法はcopy-attachment?
$('input[class=^(copy-photo|copy-attachment)]:last')
copy-photo
copy-attachment
クラス属性文字列内のクラス項目の位置に基づいて選択する必要はありません。jQuery にはネイティブの正規表現セレクターがないため、難しい方法で行う必要があります。
$('input[class^=copy-photo],input^=[copy-attachment]').last()
ほとんどの場合、=^を^=に切り替える必要があります