admin管理员组文章数量:1416404
I have a number of inputs on a page function as JQ UI datepicker. Each needs to have different settings. I want to minimize the JS so I save the settings as an attribute in each individual .
<input type="text" class="datepicker" name="dateofbirth" id="dateofbirth" size="20" value="" options="{ dateFormat: 'yy-mm-dd',changeYear: true,yearRange: '1920:2010'}" />
<input type="text" class="datepicker" name="expdate" id="expdate" size="20" value="" options="{ yearRange: '2011:2020'}" />
I use js to load the options dynamically as the settings.
$(document).ready(function(){
$(".datepicker").each(function(index){
$(this).datepicker("option" , $(this).attr('options'));
});
});
datepicker is not functioning. If I empty the parentheses after $this.datepicker it works fine.
I have also tried another way to assign settings. ("option",...) no dice.
I have a number of inputs on a page function as JQ UI datepicker. Each needs to have different settings. I want to minimize the JS so I save the settings as an attribute in each individual .
<input type="text" class="datepicker" name="dateofbirth" id="dateofbirth" size="20" value="" options="{ dateFormat: 'yy-mm-dd',changeYear: true,yearRange: '1920:2010'}" />
<input type="text" class="datepicker" name="expdate" id="expdate" size="20" value="" options="{ yearRange: '2011:2020'}" />
I use js to load the options dynamically as the settings.
$(document).ready(function(){
$(".datepicker").each(function(index){
$(this).datepicker("option" , $(this).attr('options'));
});
});
datepicker is not functioning. If I empty the parentheses after $this.datepicker it works fine.
I have also tried another way to assign settings. ("option",...) no dice.
Share Improve this question edited Sep 15, 2017 at 12:18 anatol 7879 silver badges16 bronze badges asked Jan 6, 2011 at 3:29 Desmond LiangDesmond Liang 2,3104 gold badges26 silver badges33 bronze badges 2- In fact, the specification w3c attribute options do not exist, you tried to substitute other attributes, such as @ title or @ alt, which unfortunately is also not used in the tags input? – Zhasulan Berdibekov Commented Jan 6, 2011 at 3:56
- 1 man.. if it does not exist that doesnt mean you cant add it. adding the attr is perfectly fine there.. – Baz1nga Commented Jan 6, 2011 at 4:00
3 Answers
Reset to default 2Try this
$(this).datepicker(eval('(' + $(this).attr('options') + ')'));
Or use a json parser http://www.json/js.html
essentially your are doing this:
$(document).ready(function(){
$(".datepicker").each(function(index){
$(this).datepicker("option" , "{ dateFormat: 'yy-mm-dd',changeYear: true,yearRange: '1920:2010'}" );
});
});
when you need to be doing either
$(document).ready(function(){
$(".datepicker").datepicker({ dateFormat: 'yy-mm-dd',changeYear: true,yearRange: '1920:2010'});
});
or this
$(document).ready(function(){
$(".datepicker").datepicker();
$(".datepicker").datepicker("option" , "dateFormat", 'yy-mm-dd');
$(".datepicker").datepicker("option" , "changeYear", true);
$(".datepicker").datepicker("option" , "yearRange", '1920:2010');
});
The first solution initiates the datepicker with a set of options, while the second solution initiates a datepicker, and then sets individual options. Your version was trying to be some hybrid of the two, and tried to use a string instead of an object literal encased in curly brackets.
Instead of using eval
(which is evil, btw) you can use $.parseJSON
like this:
$(this).datepicker( "option" , $.parseJSON( $(this).attr('options')) );
However, you should be careful to have valid JSON string.
本文标签: javascriptjQuery UI datepicker options as variableStack Overflow
版权声明:本文标题:javascript - jQuery UI datepicker options as variable - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1744683668a2619567.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论