给js添加赋值
<script>
function ceshi(){
var select = document.getElementById("sss");
var option1 = document.createElement("option");
select.appendChild(option1);
option1.value = "bbb";
option1.text = "bbb";
document.getElementById("sss").text = "bbb";
document.getElementById("sss").value = "bbb";
}
</script>
0CF
6C6
39F
0CF
F00