帮我在 jQuery 中添加输入
我有两个输入、样式列和中单元格。我希望第一个输入只有添加,而不是一起添加和删除。 此外,除了第一个输入之外的每个输入都有删除链接,最后一个输入也一起添加和删除。
i have tow input, style column and mediumCell. i want first input only have add, not add and remove together.
also each input except first input have remove link and last input have add and remove together.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这可能有帮助:
This might help:
为克隆的输入分配一个空值:
Assign a empty value to the cloned input:
您可以在兄弟节点之前或之后插入和删除节点,而不是克隆和追加:
然后可以编写代码的简化版本 因此。
Instead of cloning and appending, you can insert and remove nodes before or after siblings:
A simplified version of your code can then be written thus.