English 中文(简体)
j Query UIdatepicker: 您能否安排日期,并允许多重排位特性?
原标题:jQuery UI datepicker: Can you format a date and allow multiple seperator characters?

我更喜欢用这个办法安排我的日pi。

{dateFormat:  mm-dd-yy }

页: 1

但是,我要允许人们作为主人,而不是选择干.。

是否有办法安装日期pi机,以便它不停在毫米高的状态,但会阻止某人进入毫米/dd/yy?

我确实知道,我可以确定{基斯特投入:false},但人们可以去信:

感谢任何帮助。

最佳回答

日期旁观者有斜线的田地和营地;路面选择,以便你能够展示一种格式,但发送另一种格式,但不是你想要的。

i 建议使用日期js()对用户投入进行细分,并更新与您的日期比照相链接的隐藏文本箱。

问题回答

制约作用将达到极限。 我试图做同样的事情,我不得不作一些额外的事。 您可使用任何划界。 它将任何非数字改为/。 如果你进入m/d或m/d/,则使用任何限制添加本年度。 如果你是T或T,那么它就将回去。 你可以做T10或T+10,今天将返回10天。 你可以做第10号,10天前将返回。 你们可以改变它拥有“乳房”的2个地方,以使用你所期望的格式。 这种解决办法应当采用国际形式,因为除了汽车日期外,我没有为此进行测试。

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<link rel="stylesheet" href="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/themes/smoothness/jquery-ui.css">
<script src="https://ajax.googleapis.com/ajax/libs/jqueryui/1.12.1/jquery-ui.min.js"></script>
<script>
$(function() {
   $( "#STARTDATE" ).datepicker({
      numberOfMonths: 4,
      showButtonPanel: true,
      constrainInput: false,
	  dateFormat: "mm-dd-y"
    });
	$( "#STARTDATE" ).change(function() {
	  if ($("#STARTDATE").val().toUpperCase().indexOf("T") >= 0) {
       Days = parseInt("0" + $("#STARTDATE").val().replace(/D/g,  ));
       if ($("#STARTDATE").val().indexOf( - ) >= 0){Days*=-1}
       var tdate = new Date();
       tdate.setDate(tdate.getDate() + Days);
	  } else {
       var tdate = $("#STARTDATE").val().replace(/[^0-9]+/g,  / );
	   var tvar = tdate.split("/");
	   if (tvar.length == 3){
	    if (tvar[2] == "") {tdate += new Date().getFullYear().toString().substr(-2)}
	   }
	   if (tvar.length == 2){tdate += "/" + new Date().getFullYear().toString().substr(-2)}
       try {
 	    tdate = $.datepicker.parseDate( mm/dd/y , tdate);
	   } catch (Error) {
        try {
 	     tdate = $.datepicker.parseDate( mm/dd/yy , tdate);
  	    } catch (Error) {
        }
       }
	  }
	  tdate = $.datepicker.formatDate( "mm-dd-y", new Date( tdate ) );
	  $( "#STARTDATE" ).val(tdate);
    });
 });
</script>




相关问题
getGridParam is not a function

The HTML: <a href="javascript:void(0)" id="m1">Get Selected id s</a> The Function: jQuery("#m1").click( function() { var s; s = jQuery("#list4").getGridParam( selarrrow )...

selected text in iframe

How to get a selected text inside a iframe. I my page i m having a iframe which is editable true. So how can i get the selected text in that iframe.

jQuery cycle page with links

I am using the cycle plugin with pager functionality like this : $j( #homebox ) .cycle({ fx: fade , speed: fast , timeout: 9000, pager: #home-thumbs , ...

jquery ui dialog opens only once

I have a button that opens a dialog when clicked. The dialog displays a div that was hidden After I close the dialog by clicking the X icon, the dialog can t be opened again.

jConfirm with this existing code

I need help to use jConfirm with this existing code (php & Jquery & jAlert). function logout() { if (confirm("Do you really want to logout?")) window.location.href = "logout.php"; } ...

Wrap text after particular symbol with jQuery

What I m trying to do, is wrap text into div inside ll tag. It wouldn t be a problem, but I need to wrap text that appears particularly after "-" (minus) including "minus" itself. This is my html: &...

热门标签