2014-10-10 51 views
0

我想显示日期选择器弹出时,输入的元素获得焦点:哪些库用于显示日期选择器?

$(document).ready(function(){ 
     $(".datepicker").on('click',function(){ 
      $(this).datepicker({ 
       buttonImageOnly: true, 
       changeMonth: true, 
       changeYear: true, 
       showWeek: true, 
       firstDay: 1 
      }); 
      $(this).datepicker('show'); 
     }); 
    }); 

需要哪些为了js文件此代码工作?

+2

'jQuery'和'jQuery- UI' http://jqueryui.com/datepicker/ – Satpal 2014-10-10 07:09:55

+0

无论如何,我的代码是否正确? – pheromix 2014-10-10 07:11:50

+0

@pheromix还需要CSS文件,以正确渲染日期选择器 – Abhishek 2014-10-10 07:12:57

回答

1

您需要的jQuery UI库,你可以简单地使用:

<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"> 
<script src="//code.jquery.com/jquery-1.10.2.js"></script> 
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script> 
<script> 
$(document).ready(function() { 
    $(".datepicker").datepicker({ 
     buttonImageOnly: true, 
     changeMonth: true, 
     changeYear: true, 
     showWeek: true, 
     firstDay: 1 
    }); 
}); 
</script> 
1
<script src="Scripts/jquery-ui-1.10.4.js"></script> 
<link href="Content/jquery-ui-1.10.4.css" rel="stylesheet" /> 
+0

css是否可以从jquery.com下载,或者我应该创建它吗? ? – pheromix 2014-10-10 07:14:42

+0

http://jqueryui.com/download/all/ – Abhishek 2014-10-10 07:18:28

1

日期选择器是jQuery用户界面的一部分,这里有一个例子:

<!doctype html> 
<html lang="en"> 
<head> 
<meta charset="utf-8"> 
<title>jQuery UI Datepicker - Default functionality</title> 
<link rel="stylesheet" href="//code.jquery.com/ui/1.11.1/themes/smoothness/jquery-ui.css"> 
<script src="//code.jquery.com/jquery-1.10.2.js"></script> 
<script src="//code.jquery.com/ui/1.11.1/jquery-ui.js"></script> 
<link rel="stylesheet" href="/resources/demos/style.css"> 
<script> 
$(function() { 
$("#datepicker").datepicker(); 
}); 
</script> 
</head> 
<body> 
<p>Date: <input type="text" id="datepicker"></p> 
</body> 
</html> 
+0

是否可以从jquery.com下载css,还是应该创建它? – pheromix 2014-10-10 07:14:23

+0

如果您更喜欢拥有所有必需的文件(例如内联网),您可以使用jqueryUI站点构建包含所有必需文件(包括JS/CSS /图像等)的Zip。 => http://jqueryui.com/download/ – 2014-10-10 08:28:36