0

在表单中编辑数据希望在表单中显示...但不应选择下拉值...我希望选择下拉值这里是 list_search 函数中的代码 id return cmb_fruit, val return Apple or Orange

              <tr>
                <td width="38%" height="28" align="left"><span class="style20"><font color="#DC143C">*</font>Profession</span></td>
                <td width="62%" align="left"><label for="profession"></label>
                  <select name="cmb_fruit" size="1" id="cmb_fruit">
                    <option value="Select">Select</option>
                    <option value="Apple">Apple</option>
                    <option value="Orange">Orange</option>
                  </select>
    <script language="javascript" type="text/javascript">
        list_search('cmb_fruit',<?php echo "'" . @mysql_result($rs_modify,0,'fruit') . "'";?>)
    </script>
                  </td>
              </tr>


function list_search(id,val)
 {
 cnt=document.getElementById(id).length
 for(x=0; x<cnt; x++ )
 {
     if( document.getElementById(id).options(x).value==val)
     {

         document.getElementById(id).options(x).selected=true
         break;
     }
 }
} 
4

2 回答 2

0
var fruit = document.getElementById("fruit");
fruit.options[fruit.options.selectedIndex].selected = true;
于 2013-04-22T12:30:40.020 回答
0

您可以设置value选择的属性。此外,如果您从正文中运行的脚本调用它,请确保在list_search中声明该函数。head

function list_search(id, val) {
    document.getElementById(id).value = val;
}

请注意,您不需要 javascript,您可以简单地将selected属性放在option要选择的元素上。

<option value="Apple" selected>Apple</option>
于 2013-04-22T12:33:39.013 回答