标签:
从后台传到前台,让前台的Radiobutton被选中。
jquery代码:
if(b_type == ‘‘) { return false; } else if($(‘input[name = "type"]:checked‘).val() != b_type) { $(‘input[name = "type"]:eq(1)‘).attr("checked", true); }
感觉这种方法只试用于少数的单选按钮。多的话用起来不太方便。但是功能还是能实现。
标签:
原文地址:http://www.cnblogs.com/Teofil/p/4309126.html