English 中文(简体)
日期picker, not working on IE 8.0
原标题:datepicker not working on IE 8.0

我正在利用 j子公司对date子公司的控制,在我的伙伴关系中显示一个日历。 NET MVC应用程序。

根据以下法典,日期选择者在FF和Kook上课以罚款。

 $("#Scheduled").datepicker();

但是,在8月份,它根本就没有显示。 利用Dev工具,我在这里看到:

<input name="Scheduled" id="Scheduled" type="text" jQuery1335986904515="11" jQuery17109478568619873011="8" value="5/31/2012 12:00:00 PM"/>

我失踪了什么?

EDIT: I have the following scripts on my page:

<script type="text/javascript" src="/Scripts/uploadify/jquery-1.7.1.min.js"></script>  
<script type="text/javascript" src="/Scripts/uploadify/jquery.uploadify.v2.1.4.js"></script>  
<script type="text/javascript" src="/Scripts/uploadify/swfobject.js"></script>     
<script type="text/javascript" src="/js/component/jquery-ui-1.8.20.custom.min.js"></script>
问题回答
 <input name="Scheduled" id="Scheduled"  readonly="true"  type="text"/>

页: 1

    $("#Scheduled").datepicker({ dateFormat:  dd/M/yy , changeMonth: true, changeYear: true });
    $("#Scheduled").datepicker("setDate", new Date( 31/may/2012 ))

并改变这一命令

 <script type="text/javascript" src="/Scripts/uploadify/jquery-1.7.1.min.js"></script> 
 <script type="text/javascript" src="/js/component/jquery-ui-1.8.20.custom.min.js"></script>
 <script type="text/javascript" src="/Scripts/uploadify/jquery.uploadify.v2.1.4.js"></script>  
 <script type="text/javascript" src="/Scripts/uploadify/swfobject.js"></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: &...

热门标签