当前位置: 编程技术>.net/c#/asp.net
asp.net使用jQuery获取RadioButtonList成员选中内容和值示例
来源: 互联网 发布时间:2014-08-25
本文导语: 代码如下: $(document).ready(function () { $("# input[type=radio]").bind("change", function () { if ($(this).val() != "") { $("#message").text("Te...
代码如下:
$(document).ready(function () {
$("# input[type=radio]").bind("change", function () {
if ($(this).val() != "") {
$("#message").text("Text:" + $(this).next().text() + " Value:"+$(this).val());
}
});
});
请选择爱好
音乐
篮球
美剧
电影