我想要调用Javascript函数并传递所选无线电按钮的值。
我的按钮调用后面代码中的函数:
<asp:RadioButtonList ID="rbtLocation" runat="server" RepeatDirection="Horizontal"
RepeatLayout="Table" AutoPostBack="True" OnSelectedIndexChanged="rbtLocation_SelectedIndexChanged">
有没有办法触发对javascript函数的第二次调用,因为我已经在更改时调用了一个函数?
答案 0 :(得分:1)
您可以尝试使用像$('element_ID').on('change'){function func1(){/*code here*/};
这样的jquery
或者你可以将你的javascript函数添加到CodeBehind,以运行 rbtLocation_SelectedIndexChanged 。它看起来像
Response.Write("<script language='javascript'>/* javascript function */</script>");