jquery 在()之后重置
有没有办法重置/更新 after()
元素?不要添加另一个 after()
文本。谢谢
is there a way to reset/update an after()
element? Not add another after()
text. Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
也许这会有所帮助。
(要发送的表单为空的控制器函数服务器输入表单父DIV的参数ID,输出为1-true,0 false)
Maybe this will helpful.
(Controller function for Emptiness of Form to be sent Server Input parameter ID of Form Parent DIV, output is 1-true, 0 false)
你的问题不清楚。我假设您想要修改使用
.after()
添加的元素,而不是这样做:
您可以这样做(使用
insertAfter
)希望这会有所帮助。
干杯。
Your question is not clear. I'll asume you want to modify an element added with
.after()
Instead of doing this:
You could do this (use
insertAfter
)Hope this helps.
Cheers.
当您添加元素时,给它一个名称
然后,当您想要更改它时,只需先删除前一个即可
您可以编写一个使用
.data()
的函数来记住新元素:(不过我会稍微更改名称)然后您可以使用
第二个将替换第一个
When you add the element, give it a name
Then, when you want to change it, simply remove the previous one first
You can write a function that uses
.data()
to remember the new element as such: (I would change the names a bit though)Then you can use
And the second one will replace the first