本文介绍了输入框时间在html ie的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我想要一个时间输入框(使箭头增加/减少时间)。以下代码适用于chrome / mozilla,但在Internet Explorer中无效:
I want to get a 'time' input box (that sows the arrows to increase/decrease time). The following code works in chrome/mozilla but it doesnt in internet explorer :
<label for="moduleStart">Hours from:</label>
<input type="time" name="moduleStart" class="dateFormat"/>
如何解决?
推荐答案
许多元素类型都是HTML5中新增的元素,因此不受旧版浏览器的支持。您可以对非HTML5浏览器使用 polyfill 。
Many element types are new in HTML5 thus not supported by older browsers. You could use a polyfill for non HTML5 browsers.
在这种情况下,像:
这篇关于输入框时间在html ie的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!