本文介绍了Ajax回发未调用javascript函数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
在页面上加载成功调用的javascript函数,但是当使用ajax进行页面回发时,javascript不再被调用.
On page load the javascript functions called successfully, but when the page postback with the ajax the javascript didn''t called again.
Thanks!
推荐答案
ScriptManager.RegisterStartupScript(this.Page, typeof(System.Web.UI.Page), "StartupScript", "<script type=''text/javascript'' language=''javascript''>javascript:yourfunction()</script>", false);
这篇关于Ajax回发未调用javascript函数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!