我正在寻找适用于所有浏览器的 "date-picker"
I'm looking for a "date-picker" that works for all the browsers
在所有浏览器上它应该是这样的:
这是它在 Safari 上的样子,例如:
这是我目前使用的代码:
<%= date_field 'birth_date', rel => 'birth_date',
class => "form-control", required => undef %>
您正在使用 Mojolicious date_field
tag helper。这会生成一个 <input type="date">
HTML 输入字段。
但是support for the date input isn't universal。特别是,您会看到 Safari 不支持它。
所以我猜你需要使用某种插件。如果您使用 jQuery,那么 one of these 可能适合您。
在所有浏览器上它应该是这样的:
这是它在 Safari 上的样子,例如:
这是我目前使用的代码:
<%= date_field 'birth_date', rel => 'birth_date',
class => "form-control", required => undef %>
您正在使用 Mojolicious date_field
tag helper。这会生成一个 <input type="date">
HTML 输入字段。
但是support for the date input isn't universal。特别是,您会看到 Safari 不支持它。
所以我猜你需要使用某种插件。如果您使用 jQuery,那么 one of these 可能适合您。