请教一个.net中js控制服务器控件的问题
<htmlxmlns="http://www.w3.org/1999/xhtml"><headid="Head1"runat="server"><title>datali...
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>datalist完美纠错版</title>
<script language ="javascript" type ="text/javascript" >
function fun()
{
document.getElementById ("Button2").value="hello";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<br><br><br>
<center>
<asp:Button ID="Button2" runat="server" Text="编 辑" CommandName ="edit" OnClientClick="fun()" />
我想当点击button2之后,button2的text变成“hello”,请问如何用js语句实现啊。
我这个不行啊。。 展开
<head id="Head1" runat="server">
<title>datalist完美纠错版</title>
<script language ="javascript" type ="text/javascript" >
function fun()
{
document.getElementById ("Button2").value="hello";
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<br><br><br>
<center>
<asp:Button ID="Button2" runat="server" Text="编 辑" CommandName ="edit" OnClientClick="fun()" />
我想当点击button2之后,button2的text变成“hello”,请问如何用js语句实现啊。
我这个不行啊。。 展开
展开全部
<html xmlns="http://www.w3.org/1999/xhtml" >
<head id="Head1" runat="server">
<title>datalist完美纠错版</title> title真有个性
<script language ="javascript" type ="text/javascript" >
function fun()
{
document.getElementById ("Button2").value="hello";
return false; //加上这个就不会刷新页面了。
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<br><br><br>
<center>
<asp:Button ID="Button2" runat="server" Text="编 辑" CommandName ="edit" OnClientClick="fun()" />
<head id="Head1" runat="server">
<title>datalist完美纠错版</title> title真有个性
<script language ="javascript" type ="text/javascript" >
function fun()
{
document.getElementById ("Button2").value="hello";
return false; //加上这个就不会刷新页面了。
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<br><br><br>
<center>
<asp:Button ID="Button2" runat="server" Text="编 辑" CommandName ="edit" OnClientClick="fun()" />
展开全部
document.getElementById ("Button2").value="hello";
改为
document.getElementById("<%= this.Button2.ClientID %>").value="hello";
改为
document.getElementById("<%= this.Button2.ClientID %>").value="hello";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你不是已经实现了么?有什么问题?
哦,你点击了以后,页面刷新了,所以又变回了EDIT
在代码里改吧
哦,你点击了以后,页面刷新了,所以又变回了EDIT
在代码里改吧
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询