在模板,用JavaScript改变和php没关系吧
var str = '143';
var select = document.getElementsByTagName('select')[0];
var option = select.option;
for(var i=0; i
if( option[i].value == str )
{
option[i].selected;
}
}
http://lovexuwenhao.javaeye.com/blog/422017
关于 此控件的所有操作~ 另写了一个 例子
请采纳 谢谢.
php实现
function isSelected($str1,$str2)
{
return $str1==$str2 ? 'selected':'';
}