请参阅下面的代码,我从这里获取: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>
在我所有的浏览器(Chrome,Firefox,IE和Edge)中,DatePicker都是这样的:
我希望它看起来更平滑;也许像这样(如链接中所示):
我花了两个小时在谷歌上搜索,除了WHY my Datepicker looks so weired?之外,什么都没有发现。但是,该解决方案对我不起作用。
答案 0 :(得分:0)
替换
<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" />
您在https:
值的开头缺少协议href
。如果您不从网络服务器提供页面,我认为不支持解析无协议的URL。
如果要使用file://
协议检查页面。