作者热门文章
- objective-c - iOS 5 : Can you override UIAppearance customisations in specific classes?
- iphone - 如何将 CGFontRef 转换为 UIFont?
- ios - 以编程方式关闭标记的信息窗口 google maps iOS
- ios - Xcode 5 - 尝试验证存档时出现 "No application records were found"
<form id="customerForm">
<label>
First Name:
<input id="firstName" required />
</label>
<label>
Social Security Number:
<input id="ssn" required pattern="^d{3}-d{2}-d{4}$"
title="Expected pattern is ###-##-####" />
</label>
<input type="submit" />
</form>
当我在 Chrome 中尝试该文档时,它会按预期接受条件并显示错误。
但是当我在 Safari 中尝试该文档时,它没有显示任何错误。
最佳答案
目前,Safari 不支持“必需”输入属性。 http://caniuse.com/#search=required
要在 Safari 上使用“必需”属性,您可以使用“webshim” '
1 - 下载 webshim
2 - 输入这段代码:
<head>
<script src="js/jquery.js"></script>
<script src="js-webshim/minified/polyfiller.js"></script>
<script>
webshim.activeLang('en');
webshims.polyfill('forms');
webshims.cfg.no$Switch = true;
</script>
</head>
关于html - Safari 不承认 "required"属性。如何解决?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32684657/
我正在使用intellij v2019.03,gradle 5.2.1和lombok 1.18.12我安装了lombok插件,并且正在运行并构建良好的服务。什么都没改变,但是ide开始失败,编译说找不
我试图让 sympy 在值 x = 0 处计算表达式 x/x,从而引发异常或返回 NaN。 例如下面的代码: x = sympy.Symbol("x") expr = (x/x).subs({x:0}
我是一名优秀的程序员,十分优秀!