最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Call jQuery UI Datepicker from another function - Stack Overflow

programmeradmin0浏览0评论

The following is my code:

<script type="text/javascript">
$(function(){ //this is the datepicker function
    $( "#datepicker" ).datepicker();
});

function jsFunction(){
   // i want to call the datepicker function from here
}
</script>
</head>

html

<html:image alt="Calendar" src="/images/icon_calendar.gif" 
    value="reset" onclick="jsFunction();" />
<input type="text" id="datepicker" />

When I click on the text box, the text box will prompt a calendar to let me choose the date. This date picker is working fine.

I added in an image, and I want the text box to prompt the calendar when I click on the image instead of click on the text box. I would like to ask how to call the datepicker jquery from the onlick=jsFunction(); .

I an working in Java Struts2 framework.

Kindly advise/ help.

The following is my code:

<script type="text/javascript">
$(function(){ //this is the datepicker function
    $( "#datepicker" ).datepicker();
});

function jsFunction(){
   // i want to call the datepicker function from here
}
</script>
</head>

html

<html:image alt="Calendar" src="/images/icon_calendar.gif" 
    value="reset" onclick="jsFunction();" />
<input type="text" id="datepicker" />

When I click on the text box, the text box will prompt a calendar to let me choose the date. This date picker is working fine.

I added in an image, and I want the text box to prompt the calendar when I click on the image instead of click on the text box. I would like to ask how to call the datepicker jquery from the onlick=jsFunction(); .

I an working in Java Struts2 framework.

Kindly advise/ help.

Share Improve this question edited Sep 2, 2013 at 9:49 Roman C 1 asked Sep 2, 2013 at 3:44 Panadol ChongPanadol Chong 1,90316 gold badges66 silver badges140 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 4

Correct way to set an icon trigger (via API):

$( "#datepicker" ).datepicker({
    showOn: "button",
    buttonImage: "/images/icon_calendar.gif",
    buttonImageOnly: true
});

http://jqueryui./datepicker/#icon-trigger

You can use the show method

function jsFunction(){
    $( "#datepicker" ).datepicker( "show" );
}

Demo: Fiddle

Try

function jsFunction(){
    $( "#datepicker" ).focus();
}

or

function jsFunction(){
    $( "#datepicker" ).click();
}
<script>

    $(function() {

      $("#datepic").datepicker({ showOn: 'button',buttonImage: 'image/calendar.gif'});

    });

</script>

<input type="text" id="datepic" /> 
发布评论

评论列表(0)

  1. 暂无评论