为什么我的jquery在几秒钟后消失了?

编程入门 行业动态 更新时间:2024-10-24 08:31:54
本文介绍了为什么我的jquery在几秒钟后消失了?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述

大家好我需要帮助,我有一个克隆div的按钮,但几秒后克隆的div消失了

Hi guys i need a help here, i have a button that is cloning a div, but after a few seconds the cloned div is disappearing

<b>HTML Code:</b> <pre lang="Javascript"> <asp:UpdatePanel ID="UpdatePanel1" runat="server"> <ContentTemplate> <div class="panel-body" style="overflow: auto; height: 659px;"> <div class="personalInfo"> <table class="tableOverride table-responsive"> <tr> <th>Mobile Number: </th> <td> <asp:TextBox ID="txtBoxMobileNum" runat="server" CssClass="form-controlOverride"></asp:TextBox> </td> </tr> <tr> <th>Home Number: </th> <td> <asp:TextBox ID="txtBoxHomeNum" runat="server" CssClass="form-controlOverride"></asp:TextBox> </td> </tr> <tr> <th>Personal Email: </th> <td> <asp:TextBox ID="txtBoxPersonalEmail" runat="server" CssClass="form-controlOverride"></asp:TextBox> </td> </tr> </table> </div> <div> <div class="text-center"> <button id="clonePersonalInfo" class="btn btn-default" style="height: 30px; text-decoration: underline;">Add Contact Information</button> </div> <div class="pull-left"> <asp:Button ID="btnSavePersonalInfo" runat="server" Text="Save" Width="100px" Height="30px" CssClass="btn btn-primary" /> </div> </div> </ContentTemplate> </asp:UpdatePanel> </pre>

我尝试过: jquery代码:

What I have tried: jquery Code:

$(document).ready(function () { $('#clonePersonalInfo').click(function () { $('div.personalInfo').after(function () { return $(this).clone(); }); }); });

推荐答案

( document )。ready ( function (){ (document).ready(function () {

(' #clonePersonalInfo')。click( function (){ ('#clonePersonalInfo').click(function () {

(' div.personalInfo')。after( function ( ){ return ('div.personalInfo').after(function () { return

更多推荐

为什么我的jquery在几秒钟后消失了?

本文发布于:2023-10-23 00:11:41,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/34/1519156.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:几秒钟   消失了   jquery

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!