会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
代码改变世界
Cnblogs
Dashboard
Login
Home
Contact
Gallery
Subscribe
RSS
Fred Xu的技术博客
哥编的不是代码,是寂寞!
后台调用前台js函数/方法
2009-08-11 15:54
Fred-Xu
阅读(
1477
) 评论(
0
)
编辑
收藏
举报
前台js:
Code
function
changetab(tabnum) {
//
bind click event to link
var
$tabs
=
$(
'
#tabs > ul
'
).tabs();
//
first tab selected
$tabs.tabs(
'
select
'
, tabnum);
//
switch to third tab
return
false
;
};
后台调用:
ScriptManager.RegisterStartupScript(
this
.Page,
typeof
(Page),
""
,
"
<script type=\
"
text
/
javascript\
"
>changetab(1)</script>
"
,
false
);
刷新页面
返回顶部
About