我只是使用Theme Roller并下载我无法实现的主题 我试图导入文件,但是当我为日期选择器添加输入时,它仍然只是文本框...如何使用这个我只需要" Datepicker"我究竟做错了什么 ? 感谢任何帮助。
<html>
<head>
<script src="~/Content/jquery.js"></script>
<link href="~/Content/jquery-ui.min.css" rel="stylesheet" />
<script src="~/Content/jquery-ui.min.js"></script>
<link href="~/Content/jquery-ui.structure.min.css" rel="stylesheet" />
<link href="~/Content/jquery-ui.theme.min.css" rel="stylesheet" />
<title>Test</title>
</head>
<body>
<div>
<input id="date" type="text" />
</div>
</body>
</html>
<script>
$(function() {
$('#date').datepicker();
});
</script>
答案 0 :(得分:0)
这些足以使自定义ThemeRoller工作(当然还可以添加图像)
<link href="~/jquery-ui.min.css" rel="stylesheet" />
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.10.4/jquery-ui.js"></script>
希望它能帮助那些正在寻求jQuery UI Custom ThemeRoller实现的人。