DatePicker 没有格式
DatePicker has no formatting
请看下面的代码,我从这里截取的:https://jqueryui.com/datepicker/#min-max
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Restrict date range</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D", dateFormat: "dd/mm/yy" });
} );
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker" readonly="true"></p>
</body>
</html>
DatePicker 在我的所有浏览器(Chrome;Firefox;IE 和 Edge)中看起来像这样:
我想让它看起来更平滑;可能像这样(如 link):
我花了两个小时在谷歌上搜索,除了这个以外什么也没找到:WHY my Datepicker looks so weired?。但是,该解决方案对我不起作用。
替换
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
来自
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
您在 href
值的开头缺少协议 https:
。我假设如果您不从网络服务器提供页面,则不支持解析无协议 URL。
如果您想使用file://
协议检查页面。
请看下面的代码,我从这里截取的:https://jqueryui.com/datepicker/#min-max
<!doctype html>
<html lang="en">
<head>
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>jQuery UI Datepicker - Restrict date range</title>
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
$( function() {
$( "#datepicker" ).datepicker({ minDate: -20, maxDate: "+1M +10D", dateFormat: "dd/mm/yy" });
} );
</script>
</head>
<body>
<p>Date: <input type="text" id="datepicker" readonly="true"></p>
</body>
</html>
DatePicker 在我的所有浏览器(Chrome;Firefox;IE 和 Edge)中看起来像这样:
我想让它看起来更平滑;可能像这样(如 link):
我花了两个小时在谷歌上搜索,除了这个以外什么也没找到:WHY my Datepicker looks so weired?。但是,该解决方案对我不起作用。
替换
<link rel="stylesheet" type="text/css" href="//code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
来自
<link rel="stylesheet" type="text/css" href="https://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css" />
您在 href
值的开头缺少协议 https:
。我假设如果您不从网络服务器提供页面,则不支持解析无协议 URL。
如果您想使用file://
协议检查页面。