2009年8月30日
摘要: js获取selec的选中项var obj = document.getElementById(”select_id”); //selectidvar index = obj.selectedIndex; // 选中索引var text = obj.options[index].text; // 选中文本var value = obj.options[index].value... 阅读全文
posted @ 2009-08-30 23:37 wbscn 阅读(115) 评论(0) 推荐(0) 编辑