`

simple jQuery date-picker plugin 使用

阅读更多

simple jQuery date-picker plugin

 


是一款很方便使用的插件日历控件,样式简单,功能强大。现在就说一下在rails 3中使用。

它一共有三个部分,一是jquery 框架,二是就本身cal.js文件,最后一个是样式文件calendar.css.还有页面上jquery代码

<SCRIPT type=text/javascript> 
 
jQuery(document).ready(function () {
	
	$('input.one').simpleDatepicker();
	$('input.two').simpleDatepicker({ startdate: 2008, enddate: 2012 });//时间从   2008--2012
	$('input.three').simpleDatepicker({ chosendate: '9/9/2010', startdate: '6/10/2008', enddate: '7/20/2011' });
	$('input.four').simpleDatepicker({ x: 45, y: 3 });
});
</SCRIPT>
 

从上面的代码中得到,它由input html控件来触发。

以下html页面代码且input 类型为text来使用。

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3c.org/TR/1999/REC-html401-19991224/loose.dtd">
<!-- saved from url=(0039)http://teddevito.com/demos/calendar.php -->
<HTML xmlns="http://www.w3.org/1999/xhtml"><HEAD><TITLE>simple jQuery date-picker plugin</TITLE>
<META content="text/html; charset=utf-8" http-equiv=Content-Type>
<META name=description 
content="a simple date-picker built with the jquery library. this is NOT an everything-under-the-kitchen-sink date picker">
<META name=keywords 
content=datepicker,date-picker,jquery,jqueryplugin,calendar><LINK rel=stylesheet 
type=text/css href="simple%20jQuery%20date-picker%20plugin_files/calendar.css">
<STYLE type=text/css>P {
	FONT: 12px/1.3em Arial, Helvetica, sans-serif
}
UL {
	FONT: 12px/1.3em Arial, Helvetica, sans-serif
}
UL LI {
	FONT: 12px/1.3em Arial, Helvetica, sans-serif
}
BODY {
	PADDING-BOTTOM: 2em; PADDING-LEFT: 5em; PADDING-RIGHT: 5em; PADDING-TOP: 2em
}
</STYLE>
 
<SCRIPT type=text/javascript 
src="simple%20jQuery%20date-picker%20plugin_files/jquery-1.3.2.min.js"></SCRIPT>
 
<SCRIPT type=text/javascript 
src="simple%20jQuery%20date-picker%20plugin_files/cal.js"></SCRIPT>
 
<SCRIPT type=text/javascript> 
 
jQuery(document).ready(function () {
	
	$('input.one').simpleDatepicker();
	$('input.two').simpleDatepicker({ startdate: 2008, enddate: 2012 });
	$('input.three').simpleDatepicker({ chosendate: '9/9/2010', startdate: '6/10/2008', enddate: '7/20/2011' });
	$('input.four').simpleDatepicker({ x: 45, y: 3 });
});
</SCRIPT>
 
<META name=GENERATOR content="MSHTML 8.00.7600.16891"></HEAD>
<BODY>
<H1>simple jQuery date-picker plugin</H1>
<H6>last updated <!-- #BeginDate format:Am2 -->3/12/09<!-- #EndDate --> </H6>
<P>Here's a nifty little date picker, but it's not complete. In fact, it may 
need YOUR help.</P>
<P>All the code here is original. I have to thank Mike Alsup for suggesting the 
development pattern that helped this go from one-off simple script to 
ready-to-use jQuery plugin.</P>
<P>You're welcome to use anything here as often as you like, even to include it 
as part of commercially release products. Please don't package and sell it as a 
standalone application.</P>
<P>Please send comments and suggestions (complete with any code changes/updates) 
to:</P><IMG title="low-tech contact button" alt=images/contact.png 
src="simple%20jQuery%20date-picker%20plugin_files/contact.png"> 
<HR>
 
<P>Some test inputs, each with a different setup:</P>
<P><INPUT class=one type=text name=date> <INPUT class=two type=text name=date> 
<INPUT class=three type=text name=date></P>
<P>Some more test inputs, each with the same setup:</P>
<P><INPUT class=four type=text name=date> <INPUT class=four type=text name=date> 
<INPUT class=four type=text name=date></P>
<H4>What is does:</H4>
<UL>
  <LI>works on one or more text input elements (<CODE>&lt;input type="text" ... 
  /&gt;</CODE>)</LI>
  <LI>highlights a preset date (first looking for a value in the input, then a 
  passed option / default, then just selects today)</LI>
  <LI>closes when either a date is picked, the "today" button is hit, or the 
  "close" button is hit</LI>
  <LI>allows fast navigation using a &lt;select&gt; field for months and 
  years</LI>
  <LI>advances and reverses months with a hit of the <STRONG>«</STRONG> or 
  <STRONG>»</STRONG> buttons</LI>
  <LI>automatically hides the <STRONG>«</STRONG> or <STRONG>»</STRONG> buttons 
  when either the start or end of the date range is reached</LI>
  <LI>allows input for a year range and/or a date range</LI>
  <LI>adjusts for leap years</LI>
  <LI>allows you to set the x and y offset from the top left corner of the input 
  elements</LI>
  <LI>allows you to easily change the output format (look for 
  "<CODE>jQuery.fn.simpleDatepicker.formatOutput = function (dateObj) 
  {...</CODE>")</LI>
  <LI>is easily styled via CSS</LI>
  <LI>works in IE 6, FF 3 (probably earlier) and Chrome 1.0 (and probably 
  others... just don't have them here on my laptop)</LI></UL>
<P>It is meant to NOT be an "everything-under-the-kitchen-sink" date picker. 
Just there to help a user pick a date.</P>
<H4>How to use it:</H4>
<P>Simply call <CODE>$('input').simpleDatepicker();</CODE> on the set of 
elements you would like to work with.</P>
<H4>Options</H4>
<P>You can pass an object literal with some options that will be applied to all 
the datepickers setup with that call to <CODE>simpleDatepicker()</CODE></P>
<P><CODE>$('input').simpleDatepicker({chosendate: , startdate: , enddate: , x: , 
y: });</CODE></P>
<TABLE>
  <THEAD>
  <TR>
    <TH>options</TH>
    <TH>values</TH></TR></THEAD>
  <TBODY>
  <TR>
    <TD class=code>[chosendate]</TD>
    <TD>date string matching <CODE>mm/dd/yyyy</CODE> or 
    <CODE>m/d/yyyy</CODE></TD></TR>
  <TR>
    <TD class=code>[startdate]</TD>
    <TD>4 digit year or date string matching <CODE>mm/dd/yyyy</CODE> or 
      <CODE>m/d/yyyy</CODE></TD></TR>
  <TR>
    <TD class=code>[enddate]</TD>
    <TD>4 digit year or date string matching <CODE>mm/dd/yyyy</CODE> or 
      <CODE>m/d/yyyy</CODE></TD></TR>
  <TR>
    <TD class=code>[x]</TD>
    <TD></TD>an integer, without quotes is fine, like so: <CODE>{ x: 6, y: 10 
    }</CODE></TR>
  <TR>
    <TD class=code>[y]</TD>
    <TD></TD>an integer, without quotes is fine, like so: <CODE>{ x: 6, y: 10 
    }</CODE></TR></TBODY></TABLE></BODY></HTML>
 

rails3中使用, 个人是把cal.js文件放在asset下的js文件夹下,calendar.css 放入样式文件夹下,把页面上的话放在rail asset下的js文件夹下,也就下面这断

<SCRIPT type=text/javascript> 
 
jQuery(document).ready(function () {
	
	$('input.one').simpleDatepicker();
	$('input.two').simpleDatepicker({ startdate: 2008, enddate: 2012 });
	$('input.three').simpleDatepicker({ chosendate: '9/9/2010', startdate: '6/10/2008', enddate: '7/20/2011' });
	$('input.four').simpleDatepicker({ x: 45, y: 3 });
});
</SCRIPT>

 

再用页面中html标签引有

<P><INPUT class=one type=text name=date> <INPUT class=two type=text name=date> 
<INPUT class=three type=text name=date></P>
<P>Some more test inputs, each with the same setup:</P>
<P><INPUT class=four type=text name=date> <INPUT class=four type=text name=date> 
<INPUT class=four type=text name=date></P>

 

引用方式主要是class与类型为text来使用,要不然失败的,

在rails中,写成

<%=text_field_tag '****' ,{},:class=>'one',%>

 这样就可以在点击文本框时,日历就会出现,但是英文显示

改下面代码可以中文显示

var today = new Date(); // used in defaults
    var months = 'January,February,March,April,May,June,July,August,September,October,November,December'.split(',');
	var monthlengths = '31,28,31,30,31,30,31,31,30,31,30,31'.split(',');
  	var dateRegEx = /^\d{1,2}\/\d{1,2}\/\d{2}|\d{4}$/;
	var yearRegEx = /^\d{4,4}$/;

 把上面的months后的值换成一月,二月……………………十二月,就行

显示在下面代码中改

	jQuery.fn.simpleDatepicker.formatOutput = function (dateObj) {
		return (dateObj.getMonth() + 1) + "/" + dateObj.getDate() + "/" + dateObj.getFullYear();	
	};

 

把上面的return中的值位置换换就行了

注意得的是,因为rails中因为有自己带的jquery框架,所以不用把jquery-1.3.2.min框架文件放进去,引用。

希望能给像我一样的初学者带来帮助。

现带个官方文件,用来演示

 

 

今天突然发现,有个bug,默认年份是现在的加上明年。所以在下面加上有关时间的内容。

<script language="javascript">
var d = new Date()
var vYear = d.getFullYear()
var vMon = d.getMonth() + 1
var vDay = d.getDate()
var h = d.getHours(); 
var m = d.getMinutes(); 
var se = d.getSeconds(); 
s=vYear+(vMon<10 ? "0" + vMon : vMon)+(vDay<10 ? "0"+ vDay : vDay)+(h<10 ? "0"+ h : h)+(m<10 ? "0" + m : m)+(se<10 ? "0" +se : se);
document.write(s);//输出时间
</script> 

 

 

分享到:
评论
2 楼 chen_miao 2012-07-05  
qplovechinese 写道
很好!

3q
1 楼 qplovechinese 2012-07-05  
很好!

相关推荐

    修改后的simple jQuery date-picker plugin,支持中文

    在众多的`jQuery`日期选择器插件中,`simple jQuery date-picker plugin`因其简洁易用而受到欢迎。这个插件提供了基本的日期选择功能,并且可以轻松地自定义样式和行为,满足开发者不同的需求。 **中文支持** 在...

    再次修改的jQuery日期弹出层Simple jQuery Date-picker Plugin

    上次已经传过一个,这次修改更加彻底,更加方便,更加符合国内开发者使用。具体修改如下: 1、修改星期几为中文显示 2、修改日期显示,由之前的月/日/年,改为年/月/日 3、新增参数sign,可修改中间的间隔符。如sign...

    jquery日期插件

    &lt;script src="simple jQuery date-picker plugin_files/plugin.js"&gt; ``` 然后,为需要添加日期选择功能的输入框添加特定的类名或ID,并在文档加载完成后调用插件方法: ```javascript $(document).ready(function...

    jQuery插件教程(搜罗了全部插件).docx

    - jQuery date picker plugin:轻量级的日期选择插件。 - jQuery Time Picker:时间选择插件,方便用户输入时间。 - Time Picker:简洁的时间选择组件。 - ClickPick:多功能的时间/日期选择器。 - Tim 这些...

    JQuerry 插件介绍

    - jQuery date picker plugin:另一种日期选择插件。 - jQuery Time Picker:时间选择器。 - ClickPick / TimePicker:简单易用的时间选择组件。 - TimePicker.Farbtastic:色彩选取插件。 6. 投票插件: - ...

    240多个jQuery UI插件

    - **Farbtastic jQuery Color Picker Plugin**: 高度可定制的颜色选择器。 - **ColorPicker by intelliance.fr**: 简洁高效的颜色选取插件。 #### 投票插件(Rating Plugins) - **投票插件**包括: - **jQuery ...

    jquery插件表

    - **jQuery date picker plugin**:另一种日期选择插件。 - **jQuery Time Picker**:时间选择组件。 - **ClickPick TimePicker** 和 **TimePicker**:更多风格的时间选择器。 - **Farbtastic jQuery Color Picker ...

    240多个jQuery插件

    2. jQuery date picker plugin:简单易用的日期选择器。 3. jQuery Time Picker:时间选择器。 4. ClickPick:多功能时间选择器。 5. TimePicker:直观的时间选择。 6. Farbtastic jQuery Color Picker Plugin:色彩...

    海量经典的jQuery插件集合

    Farbtastic jQuery Color Picker Plugin** - **功能概述**:提供优秀的颜色选择器。 - **应用场景**:适用于需要高质量颜色选择的场景。 **7. ColorPicker by intelliance.fr** - **功能概述**:提供另一个颜色...

    再次修改后的jQuery日期控件,简单高效,更好用

    之前上传过一次修改的版本,时间格式显示总是月/日/年。这次修改后,显示改为年/月/日,更加方便国内开发者使用。并且中间的间隔符号也可以替换,如:年-月-日,相当方便了哦。

    bootstrap ace_admin1.3.1 (最新版)

    Simple color picker Custom scrollbars Onpage help to provide better help for users Bootstrap, jQuery UI and third party plugins and elements including: jQuery jQuery UI (Custom Build) Twitter ...

    强烈推荐240多个jQuery插件提供下载

    - **jQuery date picker plugin** 是另一种简洁的日期选择插件。 - **jQuery Time Picker** 提供了时间选择功能。 - **ClickPick** 和 **TimePicker** 都是易于使用的时钟组件。 - **Farbtastic jQuery Color Picker...

    给开发者准备的 10 款最好的 jQuery 日历插件

    在IT领域,jQuery是一款广泛使用的JavaScript库,它简化了HTML文档遍历、事件处理、动画以及Ajax交互。针对开发者的需求,jQuery有许多插件可以增强网页的功能,其中日历插件是常见的一种,用于显示日期、安排事件...

    jquery.datetimepicker6

    A jQuery plugin for Date and Time Picker(基于jQuery的日期时间选择器) Demo: Features(特性) Simple Interaction.(交互简单) Concise Interface.(界面整洁) Bootstrap Style.(类Bootstrap风格) Preview(预览图) ...

Global site tag (gtag.js) - Google Analytics