这是在带有 C# 的 ASP.NET 中。我正在尝试从单选按钮列表单击事件中以编程方式调用 Javascript 函数。我创建了单选按钮列表并在其中添加了几个列表项。我环顾四周,但一直无法弄清楚这一点。
C#代码:
RadioButtonList _rbList = new RadioButtonList();
_rbList.ID = r[0].ToString()+"Answer";
_rbList.RepeatDirection = RepeatDirection.Horizontal;
_rbList.Attributes.Add("onchange", "return answered();");
我的 .aspx 中的 Javascript:
<script type ="text/javascript">
function answered() {
alert("I am an alert box!");
}
</script>