我是jQuery的新手。我试图转换这个jQuery代码,以便在我的页面中调用.Net Ajax部分回发后它仍然存在。下面的代码在页面最初加载时运行,但不是在我在updatePanel中进行回发之后。
我是否需要在代码中的其他位置使用.live函数才能使其正常工作?
代码:
<script type="text/javascript">
$.noConflict();
$(document).ready(function() {
//Default Action
$(".tab_content").hide(); //Hide all content
$("ul.tabs li:first").addClass("active").show(); //Activate first tab
$(".tab_content:first").show(); //Show first tab content
//On Click Event
$("ul.tabs li").live('click', (function() {
$("ul.tabs li").removeClass("active"); //Remove any "active" class
$(this).addClass("active"); //Add "active" class to selected tab
$(".tab_content").hide(); //Hide all tab content
var activeTab = $(this).find("a").attr("href"); //Find the rel attribute value to identify the active tab + content
$(activeTab).fadeIn(); //Fade in the active content
return false;
}));
});
</script>
答案 0 :(得分:1)
更好的选择可能是挂钩PageRequestManager的add_pageLoaded事件。这是an article,描述了如何执行此操作。然后将jQuery的东西放在一个方法中并在事件中调用它。