js调用RadioButton1

Posted 开开123

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js调用RadioButton1相关的知识,希望对你有一定的参考价值。

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title></title>
<script type="text/javascript">
function ischeck() {
var txt1=document.getElementById("TextBox1");
var txt2=document.getElementById("TextBox2");
var rdb1=document.getElementById("RadioButton1");
var rdb2=document.getElementById("RadioButton2");
if (rdb1.checked) {
alert("RadioButton1");
txt1.value = "";
txt2.value = "";
}
if (rdb2.checked) {
alert("RadioButton2");
}
}
</script>
</head>
<body>
<form id="form1" runat="server">
<div>
<asp:RadioButton ID="RadioButton1" runat="server" onclick="ischeck()" GroupName="aa"/>
<asp:RadioButton ID="RadioButton2" runat="server" onclick="ischeck()" GroupName="aa"/>
<asp:TextBox ID="TextBox1" runat="server" Text="aa" ></asp:TextBox>
<asp:TextBox ID="TextBox2" runat="server" Text="bb"></asp:TextBox>
</div>
</form>
</body>
</html>

以上是关于js调用RadioButton1的主要内容,如果未能解决你的问题,请参考以下文章

Js怎么调用外部Js

请问一个js文件中如何调用另一个js文件的方法

js 内部方法调用外部方法

怎么调用外部js文件?

怎么编写和调用js文件

一个js方法中怎么调用另一个js文件