与手风琴问题类似,但不使用手风琴

发布于 2024-11-08 16:01:07 字数 683 浏览 0 评论 0原文

我有 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 技术交流群。

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

发布评论

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

评论(1

雪若未夕 2024-11-15 16:01:07

首先为编辑按钮和继续按钮分配一个类。

然后为按钮编写一个事件处理程序,先隐藏所有按钮,然后使被单击的按钮可见。

伪代码:

// hide all button defined by their class name
$(".editButtonClass, .continueButtonClass").hide();

// --> if clicked button is a edit button do your job
if( $(this).hasClass("editButton")) {
    // do your job

    // --> the button which was clicked should be visible
    $(this).show();
}

这是一种通用方法,因此它应该适用于动态元素。

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:

// hide all button defined by their class name
$(".editButtonClass, .continueButtonClass").hide();

// --> if clicked button is a edit button do your job
if( $(this).hasClass("editButton")) {
    // do your job

    // --> the button which was clicked should be visible
    $(this).show();
}

This is a generic approach so it should work for dynamic elements.

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