与手风琴问题类似,但不使用手风琴
我有 4 个 div 部分。
<div id= section1> Edit Button
continue button<br/> </div <br/> <div id= section2> Edit Button <br/> continue button<br/> </div<br/> <div id= section3> Edit Button <br/> continue button<br/> </div<br/> <div id= section4> Edit Button <br/> continue button<br/> </div<br/>
在这种情况下,当单击相应部分的继续按钮时,我将转到下一部分,用户必须在文本框中输入输入。 单击继续时,我隐藏控件并显示一个 div,其中用户输入的所有输入都写入其中。
单击编辑将显示相应部分的控制部分,并隐藏所有其他控制部分和编辑按钮,使用户仅输入一个部分的详细信息,而不输入其他部分。
所以每个部分都会发生这种情况。
我的问题是:部分是动态的。我可以显示或隐藏部分,那么在这种情况下,如何维护继续和编辑按钮功能?
我需要建议来实现此功能。
I have 4 div sections.
<div id= section1> Edit Button
continue button<br/> </div <br/> <div id= section2> Edit Button <br/> continue button<br/> </div<br/> <div id= section3> Edit Button <br/> continue button<br/> </div<br/> <div id= section4> Edit Button <br/> continue button<br/> </div<br/>
in this scenario when a continue button for a respective section is clicked I will go to the next section where user has to enter inputs in text boxes.
on clicking continue I hide the controls and show a div with all inputs entered by user are written into it.
on clicking edit will show controls section of respective section and hides all other controls sections and edit buttons making user to enter only one section details but nt other sections.
so this happens with each and every section.
my problem is: sections are dynamic.. I can show or hide sections so in that case how do I maintain the continue and edit button functionality?
I need suggestions to achieve this functionality.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
首先为编辑按钮和继续按钮分配一个类。
然后为按钮编写一个事件处理程序,先隐藏所有按钮,然后使被单击的按钮可见。
伪代码:
这是一种通用方法,因此它应该适用于动态元素。
Assign a class for edit button and continue button first.
Then write an event handler for the button, hide all first and then make visible the button which was clicked.
Pseudo code:
This is a generic approach so it should work for dynamic elements.