gpt4 book ai didi

javascript - asp.net 单选按钮 onclick javascript

转载 作者:行者123 更新时间:2023-11-28 05:49:42 25 4
gpt4 key购买 nike

在下面的代码中我有一个 html radio 和一个 java 脚本代码。当选中 radio 时,Lable1 文本的文本将更改为“test”。我的问题是,如何对在客户端运行的 asp:radiobutton 执行相同的操作?

 <input id="Radio1" checked="true" onmousedown="fun()" name="R1" type="radio"         
value="V1" /></p>
<script>
function fun()
{
document.getElementById("Label1").innerHTML.text = "test";

}
</script>

最佳答案

如果这是经典的 ASP,你可以使用这个:

<asp:RadioButtonList ID="RadioButtonList" runat="server" onclick="fun();">

<asp:ListItem Text="JavaScript" Value="JavaScript</asp:ListItem>
<asp:ListItem Text="C#" Value="C#"></asp:ListItem>
<asp:ListItem Text="ASP.Net" Value="ASP.Net"></asp:ListItem>

</asp:RadioButtonList>


<script type='text/javascript'>

function fun()
{
document.getElementById("Label1").innerHTML.text = "test";

}

</script>

如果这只是 html 和 javascript,我建议使用 onchange 事件:

http://www.w3schools.com/jsref/tryit.asp?filename=tryjsref_onchange

关于javascript - asp.net 单选按钮 onclick javascript,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38175419/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com