1. 程式人生 > >select、radio表單回顯功能實現避免使用jquery載入賦值

select、radio表單回顯功能實現避免使用jquery載入賦值


<script type="text/javascript"> 
<!-- 
$(function(){ 
//回顯時並不是真是資料的預設值 
$("input[type=radio][name=visible]").each(function() { 
if ($(this).val() == '${teacher.visible}') { 
$(this).attr("checked", "checked"); 

}); 
$("#orderBy option").each(function() { 
if ($(this).val() == '${teacher.orderBy}') { 
$(this).attr("selected", "selected"); 

}); 
}); 
//--> 
</script>