我正在使用jquery ui
tabs
。在使用选项卡时,我遇到了一个场景,在回发过程中,选项卡不会维护所选索引。我搜索它并找到了解决方案。我的问题是隐藏字段中的值在回发期间设置为 null因此,在回发期间无法维护选定的索引jquery ui
tabs
。
我该如何解决这个问题?
这是我的代码
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript" src="http://code.jquery.com/ui/1.10.1/jquery-ui.js">
<script type="text/javascript">
$(function(){
//maintaining selected tab during postback
var selectedIndex=$("#<%=hFieldTabIndex.ClientID %>").val();
alert(selectedIndex)//here value is always set to null
if(selectedIndex==""){
$("#tabs").tabs({active:0});
}
else{
$("#tabs").tabs({active:1});
}
//Change the text of the button on tab change
$("#tabs").on("tabsactivate",function(){
var index=$("#tabs").tabs("option","active");
$("#<%=hFieldTabIndex.ClientID %>").val(index);//setting the hiddenfield value
alert($("#<%=hFieldTabIndex.ClientID %>").val());//showing currect tab index
if(index=="0"){
$("#btnNext").attr('value','Next>>')
}
else{
$("#btnNext").attr('value','<<Prev')
}
})