本文介绍了当我们转到gridview的下一页时,如何保持选中的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我在gridview中有两个按钮,Link and UnLink。当我点击链接时,它应显示取消链接按钮。当我们点击链接按钮时,现在按钮变为UnLink。然后我们导航到gridview的下一页并返回到父页面,UnLink按钮不会停留。它会变为链接按钮。我如何在gridview的页面更改上按下取消链接按钮。我的代码是 我的尝试: $( document )。off( 点击, 。链接)。on( 点击, .Link, function (e){ hiddenTicketId = $( this )。attr( id); $( this )。hide(); $(' 。UnLink' )。hide(); $(' .Link')。 show(); if (hiddenTicketId == $( this )。attr( id )){ $($( this )。nearest( td)。find( 。链接))隐藏(); $($( this )。nearest( td)。find( .UnLink))。show() ; } }); 解决方案 ( document )。off( 点击, .Link)。on( 点击, 。链接, function (e){ hiddenTicketId = ( this )。attr( id); ( this )。hide(); I have two buttons in gridview ,"Link and UnLink". When i click on 'Link' it should show 'UnLink' button. When we click a 'Link' button, now the button becomes' UnLink'. Then we navigate to the next page of gridview and return back to the parent page,the 'UnLink' button doesn't stay. It changes to 'Link' button. How I hold the 'Unlink' button on the page change of gridview. And My code isWhat I have tried:$(document).off("click", ".Link").on("click", ".Link", function (e) { hiddenTicketId = $(this).attr("id"); $(this).hide(); $('.UnLink').hide(); $('.Link').show(); if (hiddenTicketId == $(this).attr("id")) { $($(this).closest("td").find(".Link")).hide(); $($(this).closest("td").find(".UnLink")).show(); } }); 解决方案 (document).off("click", ".Link").on("click", ".Link", function (e) { hiddenTicketId =(this).attr("id");(this).hide(); 这篇关于当我们转到gridview的下一页时,如何保持选中的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
07-22 22:09