admin管理员组文章数量:1345291
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 badges4 Answers
Reset to default 4Correct 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" />
本文标签: javascriptCall jQuery UI Datepicker from another functionStack Overflow
版权声明:本文标题:javascript - Call jQuery UI Datepicker from another function - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743743447a2531319.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论