简体   繁体   中英

parsley validation pattern doesn't accept empty string

I'm using parsley patter attribute to validate file names:

<input pattern="^\w+\.\w+$"/>

but it say it's valid when input text is empty. How can I make empty text invalid?

您需要设置必填属性。

<input pattern="^\w+\.\w+$" required="true"/>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM