如何在 WordPress 小部件中动态添加新实例(例如文本字段或复选框)?
我正在创建一个 WordPress 小部件。我希望用户输入他们的电话号码。默认情况下,小部件应仅显示一个文本框及其下方的一个链接,其中显示“添加新内容”。当用户单击该链接时,第二个文本框应出现在第一个文本框下方,旁边有一个小 (X),用于将其删除。
此功能位于 WordPress 的帖子编辑屏幕中。用户可以在那里动态“添加新类别”。这可以在小部件中实现吗?
I am creating a Wordpress widget. I want users to enter their phone numbers. By default, the widget should show only one textbox and a link below it that says "Add New". When the user clicks the link, a the second text-box should appear below the first one with a small (X) beside it, that will be used to remove it.
This functionality is there in the post editing screen in Wordpress. Users can dynamically "Add new category" there. Can this me implemented inside Widgets?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当然。从小部件底部的 HTML 开始:
现在来一点 jQuery:
Sure. Start with this HTML at the bottom of your widget:
Now a little jQuery: