0
我想選擇text
,email
或tel
類型的所有輸入。如何選擇[type =「」]選擇器的多個值
我可以用一個選擇器做到這一點嗎?例如:
input[type=text][type=email][type=tel]
(我知道這一個不工作)
或者唯一的辦法是用逗號將它們分開?
input[type=text], input[type=email], input[type=tel]
在此先感謝!