admin管理员组文章数量:1341686
I'm trying to setup my css menu so that one of the text links triggers a datepicker calandar to open. I have stripped everything down to the code below. The problem I am experiencing is that the code below does not work but when I remove the ul, li tags it starts working.
I am using 1.8.0 JQuery and 1.8.23 JQuery UI.
<!DOCTYPE html>
<head>
<script type="text/javascript" src=".8/jquery.min.js"></script>
<script type="text/javascript" src=".8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#dp").datepicker({
onSelect: function(dateText, inst) {
alert(dateText);
},
});
$("#datep").click(function() {
$("#dp").datepicker("show");
});
});
</script>
</head>
<body>
<ul>
<li><a href="#" id="datep">Test</a><input type="hidden" id="dp" /></li>
</ul>
</body>
</html>
Some weird things I have noticed. If I move the input under the ul it works kind of but will get an error after a few clicks on and off but if I add empty div under that input then it will start working normally it seems.
Any help is greatly appreciated.
I'm trying to setup my css menu so that one of the text links triggers a datepicker calandar to open. I have stripped everything down to the code below. The problem I am experiencing is that the code below does not work but when I remove the ul, li tags it starts working.
I am using 1.8.0 JQuery and 1.8.23 JQuery UI.
<!DOCTYPE html>
<head>
<script type="text/javascript" src="https://ajax.googleapis./ajax/libs/jquery/1.8/jquery.min.js"></script>
<script type="text/javascript" src="https://ajax.googleapis./ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#dp").datepicker({
onSelect: function(dateText, inst) {
alert(dateText);
},
});
$("#datep").click(function() {
$("#dp").datepicker("show");
});
});
</script>
</head>
<body>
<ul>
<li><a href="#" id="datep">Test</a><input type="hidden" id="dp" /></li>
</ul>
</body>
</html>
Some weird things I have noticed. If I move the input under the ul it works kind of but will get an error after a few clicks on and off but if I add empty div under that input then it will start working normally it seems.
Any help is greatly appreciated.
Share Improve this question asked Aug 30, 2012 at 23:00 BrandonBrandon 3201 gold badge4 silver badges13 bronze badges 4- Why would you use a hidden input element for a datepicker? Use a normal text input and hide it with CSS (display:none). – j08691 Commented Aug 30, 2012 at 23:06
- Both produce the same results. – Brandon Commented Aug 30, 2012 at 23:19
- looks like a jQueryUI bug to me – Maksim Vi. Commented Aug 30, 2012 at 23:26
- As @Maksim Vi said below using visibility:hidden; and width:0;border:none; does work where display:none; wasn't for text input. – Brandon Commented Aug 31, 2012 at 0:03
3 Answers
Reset to default 9So this is a bug. You'll have to add a block-level element right after the hidden input:
HTML:
<ul>
<li><a href="#" id="datep">Test</a>
<input type="hidden" id="dp" />
<div></div>
</li>
</ul>
Example: http://jsfiddle/andrewwhitaker/LE2CG/1/
Another version with hidden text: http://jsfiddle/sKXJt/ Working Demo http://jsfiddle/BhqmY/
This will help for hidden textbox:
http://forum.jquery./topic/attaching-datepicker-to-an-icon-for-a-hidden-input-field
Open JQuery Datepicker by clicking on an image w/ no input field
Hope it will help the cause :)
I am not sure about the downvote :)
anyhoo see the version with the hidden text here: http://jsfiddle/sKXJt/
Code
$(document).ready(function() {
$("#dp").datepicker({
onSelect: function(dateText, inst) {
alert(dateText);
},
});
$('#datep').click(function() {
$('#dp').datepicker('show');
});
});
working image
Since I'm using this throughout my project, I created a pact jQuery plug-in to do this, and decided to share.
JSFiddle: https://jsfiddle/yahermann/xyjhyqma/
HTML:
<span class="some-datepicker-class">
<a href="(some link)" data-date-param="(some date param)">(some initial date)</a>
</span>
JAVASCRIPT:
$('span.some-datepicker-class').datepicker_link(); // see jsfiddle for options
The default onSelect handler takes an optional link & date parameter set in the initial HTML. If both are provided, then upon selecting a new date, the plugin will load the provided link and include the selected date as a value to the provided parameter. Example:
<a href="http://example." data-date-param="mydate">2018-05-05</a>
The initial date 2018-05-05 will be displayed. Upon selecting a new date, the plugin will load the following page: http://example.?mydate=(new_date)
If this functionality is not desired, just set href="#" and/or provide your own onSelect callback instead.
本文标签: javascriptJQuery UI datepicker triggered from text linkStack Overflow
版权声明:本文标题:javascript - JQuery UI datepicker triggered from text link - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743638007a2514227.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论