本文介绍了Javascript停止使用母版页的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
当我使用母版页开发应用程序时,我会在内容页中输入一些验证信息.
它可以正常工作,但是一段时间后它将停止工作.
这是我的javascipt函数,很简单,但是它停止了工作.
When I developed my application with masterpage I enter some validation in content page.
It will work fine, but after some time it will stop working.
This is my javascipt function it is simple but it stopped working.
function reset()
{
document.getElementById("<%=txt_fh_name.ClientID%>").value="";
document.getElementById("<%=txt_mobile.ClientID%>").value="";
document.getElementById("<%=txt_add.ClientID%>").value="";
document.getElementById("<%=txt_email.ClientID%>").value="";
}
谁能告诉我如何解决这个问题或为什么会这样?
谢谢.
Can anybody tell me how to solve this problem or why it is doing like this?
Thanks.
推荐答案
这篇关于Javascript停止使用母版页的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!