<按钮>使用 jQuery SlideUp()/slideDown() 时文本消失

发布于 2024-10-03 23:59:18 字数 225 浏览 5 评论 0原文

我在表单上有 3 个部分,其中选中复选框时使用 SlideDown() ,取消选中复选框时使用 SlideUp() 。

在表单的一部分中,我使用一个简单的按钮来运行函数。

如果我取消选中复选框以向上滑动内容,然后重新选中它以再次向下滑动内容,按钮中的文本就会消失,并留下一个小按钮,该按钮仍然有效,但不会通知用户它的作用。

任何帮助都会很棒。

谢谢

理查德

I have 3 sections on a form which slideDown() when a checkbox is checked and slideUp() when the checkbox is unchecked.

In one part of the form i'm using a simple button to run a function.

If I uncheck the checkbox to slide the content up and then recheck it to slide the content back down again, the text in the button disappears and leaves me with a tiny button, which still works, but will not inform the user of what it does.

Any help would be great.

Thanks

Richard

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

楠木可依 2024-10-10 23:59:18

好的,在我向上滑动内容的函数中,我有以下行:

$("#" + section + " :input").val("");

事实证明,这不仅清除了明显的字段、文本等,还清除了按钮文本。

我只是将这行代码更改为:

$("#" + section + " :input[type='text']").val("");

感谢您的及时回复!

理查德

Ok, so in my function to slide the content up I had the following line:

$("#" + section + " :input").val("");

It turns out that this not only clears the obvious fields, text etc, it also wipes out the button text.

I simply changed this line of code to:

$("#" + section + " :input[type='text']").val("");

Thanks for your prompt replies!

Richard

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文