Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
1.8k views
in Technique[技术] by (71.8m points)

html - Does the html5 "pattern" attribute work in every browser?

Does html5 pattern attribute work in every browser or not? If doesn't work which technique should I use to work in every browser?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

No, it doesn't. Though you can use JavaScript to get the attribute and validate it that way.

if ( ! input.hasOwnProperty('pattern') 
     && ~input.value.search(input.pattern)) {
   // Valid input field for browsers which don't support `pattern` attribute.
}

jsFiddle.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...