Heim >Backend-Entwicklung >PHP-Tutorial >php使用数组填充下拉列表框的方法,php数组下拉列表框_PHP教程

php使用数组填充下拉列表框的方法,php数组下拉列表框_PHP教程

WBOY
WBOYOriginal
2016-07-13 09:58:50932Durchsuche

php使用数组填充下拉列表框的方法,php数组下拉列表框

本文实例讲述了php使用数组填充下拉列表框的方法。分享给大家供大家参考。具体实现方法如下:

<&#63;php
$data = array(
  (object)array("titulo"=>"Ford", "valor"=>"opcion1"),
  (object)array("titulo"=>"Peugeot", "valor"=>"opcion2"),
  (object)array("titulo"=>"Chevrolet", "valor"=>"opcion3"),
  (object)array("titulo"=>"Volskwagen", "valor"=>"opcion4"),
);
&#63;>
<html>
<header>
<script>
function onCambioDeOpcion(combobox) {
  alert("Seleccionaste: " + combobox[combobox.selectedIndex].text +
   " \nSu valor es: " + combobox.value);
}
</script>
</header>
<body>
<select class="select_autor" name="autor" 
onchange="onCambioDeOpcion(this)" >
<option selected="selected">Seleccione fabricante</option>
<&#63;php
for($i=0; $i<count($data); $i++)
{
&#63;>
  <option value="<&#63;php echo $data[$i]->valor &#63;>">
  <&#63;php echo $data[$i]->titulo &#63;></option>
<&#63;php
}
&#63;>
</select>
</body>
</html>

希望本文所述对大家的php程序设计有所帮助。

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/976692.htmlTechArticlephp使用数组填充下拉列表框的方法,php数组下拉列表框 本文实例讲述了php使用数组填充下拉列表框的方法。分享给大家供大家参考。具体实...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn