jquery ui datepicker无法添加新的输入字段
Posted
技术标签:
【中文标题】jquery ui datepicker无法添加新的输入字段【英文标题】:jquery ui datepicker not working on adding new input field 【发布时间】:2014-08-06 17:16:40 【问题描述】:我是 jQuery 新手,在这个问题上停留了很长一段时间。
我在单击按钮时动态添加的输入字段中使用 jQuery ui datepicker。日期选择器仅适用于输入框的第一个实例。已尝试寻找解决方案,但没有运气。任何帮助将不胜感激。谢谢
jQuery 代码
$( ".datepicker" ).datepicker(
inline: true,
dateFormat: "yy-mm-dd"
);
html代码
<div id="newlink">
<div>
<table style="border: 1px solid black;">
<tr>
<th>Date:</td>
<td>
<input type="text" name="linkurl[]" id="Editbox18" class="datepicker" style="width: 147px; height: 23px; z-index: 2; color: black" autocomplete="off">
</td>
</tr>
<tr>
<th>Remark:</td>
</tr>
<tr>
<td>
<textarea name="linkdesc[]" size="1" id="Editbox19" style="width: 550px; height: 45px; z-index: 2; color: black" autocomplete="off"></textarea>
</td>
</tr>
</table>
<br>
</div>
</div>
<br>
<p id="addnew">
<input onclick="new_link()" type="button" name="linkdesc[]" value="Add More" style="width: 80px; height: 24px; z-index: 136; color: black;">
</p>
<!-- Template -->
<div id="newlinktpl" style="display: none"> <font size="1.5">
<hr style="width: 75%; margin-left: -5px;" /> <br />
<div>
<table style="border: 1px solid black;">
<th>Date:
</td>
<td><input type="text" name="linkurl[]" id="Editbox"
class="datepicker"
style="width: 147px; height: 23px; z-index: 2; color: black"
autocomplete="off"></td>
</tr>
<tr>
<th>Remark:
</td>
</tr>
<tr>
<td><textarea name="linkdesc[]" size="1" id="Editbox19"
style="width: 550px; height: 45px; z-index: 2; color: black"
autocomplete="off"></textarea></td>
</tr>
<script type="text/javascript">
var ct = 1;
function new_link()
ct++;
var div1 = document.createElement('div');
div1.id = ct;
// link to delete extended form elements
var delLink = ' <input onclick="delIt(' + ct
+ ')" type="button" value="Del" style="position:relative; top:-20px; left:600px; color:black; width:50px;height:20px;z-index:136;">';
div1.innerHTML = document.getElementById('newlinktpl').innerHTML + delLink;
document.getElementById('newlink').appendChild(div1);
// function to delete the newly added set of elements
function delIt(eleId)
d = document;
var ele = d.getElementById(eleId);
var parentEle = d.getElementById('newlink');
parentEle.removeChild(ele);
</script>
</td>
</tr>
</table>
</div>
</font>
</div>
【问题讨论】:
putting datepicker() on dynamically created elements - JQuery/JQueryUI 的可能重复项 【参考方案1】:据我所知,当使用多个日期选择器时,它们需要唯一的 ID 用于该输入。因此,如果您要添加新内容,首先需要唯一的 ID。此外,文档就绪是在加载所有文档元素时发生的单个事件。所以你需要绑定到别的东西。例如
html
<div id="linkscontainer">
<div id="newlink" class="linkbox">
<div style="border:1px solid black;"> <span>Date:</span>
<span><input type="text" name="newdate[]" value="" id="dates" class="date" /><span>
<div>Remark:</div>
<textarea name="linkdesc[]" size="1" id="Editbox19" style="width:550px;height:45px;z-index:2; color:black" autocomplete="off"></textarea>
</span></span></div>
<input type="button" class="delete" name="delete" id="delete" value="delete" style="width: 80px; height: 24px; z-index: 136; color: black;">
</div>
</div>
<input type="button" id="addnew" name="linkdesc[]" value="Add More" style="width: 80px; height: 24px; z-index: 136; color: black;">
jquery
$(document).ready(function()
var container= $('#newlink').html(); // container to add
var ids=1; //id numbers for add. datepickers
$('#addnew').click(function()
$('#linkscontainer').append(container); // add container
$('.date:last').attr('id', ids);// each datepicker must have a unique id.
$('.delete:last').attr('id', 'f'+ids);// each deletebutton must have a unique id.
ids++; // increase the id numbers
);
);
$(document).on('focus',".date", function() //bind to all instances of class "date".
$(this).datepicker();
);
小提琴:
http://jsfiddle.net/M6jZL/
编辑:
删除按钮需要以同样的方式完成:
$(document).on('focus',".delete", function() //bind to all instances of class "date".
$(this).parent().remove();
);
【讨论】:
谢谢。工作得很好,但现在我无法使用删除按钮功能来删除其各自的容器。 您需要将点击功能绑定到创建的每个新删除按钮,请参阅更新的小提琴。 工作得很好...谢谢:)【参考方案2】:您需要在您创建的新输入元素中设置 datePicker,但是如何复制具有 datepicker 的输入时,您需要从新元素中删除类 hasDatePicker。试试下面的代码。
代码更新http://jsfiddle.net/L3X4D/1/
HTML
<div id="newlink">
<div>
<table style="border:1px solid black;">
<tr>
<th>Date:</td>
<td>
<input type="text" name="linkurl[]" id="Editbox18" class="datepicker" style="width:147px;height:23px;z-index:2; color:black" autocomplete="off">
</td>
</tr>
<tr>
<th>Remark:</td>
</tr>
<tr>
<td>
<textarea name="linkdesc[]" size="1" id="Editbox19" style="width:550px;height:45px;z-index:2; color:black" autocomplete="off"></textarea>
</td>
</tr>
</table>
<br>
</div>
</div>
<br>
<p id="addnew">
<input id="clickBTN" type="button" name="linkdesc[]" value="Add More" style="width:80px;height:24px;z-index:136; color:black;">
</p>
<!-- Template -->
<div id="newlinktpl" style="display:none"><font size="1.5">
<hr style="width:75%; margin-left:-5px;"/><br/>
<div>
<table style="border:1px solid black;">
<th>Date:</td>
<td> <input type="text" name="linkurl[]" id="Editbox" class="datepicker" style="width:147px;height:23px;z-index:2; color:black" autocomplete="off" >
</td></tr>
<tr>
<th>Remark:</td></tr><tr>
<td><textarea name="linkdesc[]" size="1" id="Editbox19" style="width:550px;height:45px;z-index:2; color:black" autocomplete="off" ></textarea>
</td></tr>
</td>
</tr>
</table>
</div></font>
</div>
JS
$(document).ready(function ()
$(".datepicker").datepicker(
inline: true,
dateFormat: "yy-mm-dd"
);
$("#clickBTN").click(function ()
new_link()
);
);
var ct = 1;
function new_link()
ct++;
var div1 = $('<div></div>');
$(div1).attr('id', ct);
// link to delete extended form elements
var delLink = $('<input type="button" value="Del" style="position:relative; top:-20px; left:600px; color:black; width:50px;height:20px;z-index:136;">');
//set click to remove the element
$(delLink).click(function ()
$(div1).remove();
);
$(div1).append($('#newlinktpl').html());
$(div1).append(delLink);
// remove class hasDatePicker
$(div1).find('.datepicker').removeClass("hasDatepicker");
//renema input
$(div1).find('.datepicker').attr("ID","newInput"+ct);
//set the new input element how datepicker
$(div1).find('.datepicker').datepicker(
inline: true,
dateFormat: "yy-mm-dd"
);
$('#newlink').append(div1);
// function to delete the newly added set of elements
function delIt(eleId)
d = document;
var ele = d.getElementById(eleId);
var parentEle = d.getElementById('newlink');
parentEle.removeChild(ele);
【讨论】:
谢谢。有了这个解决方案,从第二个添加的容器/元素中,选择器 ui 会显示出来,但输入框不会从中获取价值 :( 我更新了代码,插入了一行更改新选择器中的“ID”“($(div1).find('.datepicker').attr("ID","newInput" +ct);",在小提琴中,您报告的问题已解决。请参阅此处jsfiddle.net/L3X4D/1 完美运行...谢谢 :)以上是关于jquery ui datepicker无法添加新的输入字段的主要内容,如果未能解决你的问题,请参考以下文章
在 jquery-ui datepicker 中的“今天”按钮上添加事件侦听器
jQuery UI Datepicker - 禁用假期和星期六 - 添加星期五