0
I'm新使用的aspx項目,在前端我的表是這樣的:.aspx的日期選擇瀏覽器的兼容性
<table style="width: 450px" id="tabla1">
<tr>
<th style="text-align:left">
<asp:Label runat="server" ClientIDMode="Static" ID="label_fechaini" Text="Fecha de Apertura:" Width="50%"></asp:Label>
<br />
</th>
<th style="text-align:left">
<asp:Label runat="server" ClientIDMode="Static" ID="label_fechafin" Text="Fecha de Cierre:" Width="50%"></asp:Label>
<br />
</th>
</tr>
<tr>
<td>
<asp:TextBox type="date" ClientIDMode="Static" runat="server" ID="fecha_ini"></asp:TextBox>
</td>
<td>
<asp:TextBox type="date" ClientIDMode="Static" runat="server" ID="fecha_fin"></asp:TextBox>
</td>
</tr>
</table>
的Chrome瀏覽器,我可以看到日期選取器沒有問題是這樣的:
問題是與其他瀏覽器兼容,例如IE不會顯示datepicker.I搜索CanIuse網絡。而IE不支持日期。我能做些什麼來解決這個問題?
IE圖片:
代替該線'的 ASP:文本框>'應該使用''? –
Pepe
@Pepe不,這個JavaScript將日期選擇器功能添加到現有的文本框中。它不是文本框本身的替代品。您仍然需要標記中的文本框聲明。 – mason
我的文本框應該是什麼樣子。它需要'type = date'?或簡單的''? – Pepe