> 백엔드 개발 > PHP 튜토리얼 > 数据库三级联动怎么做

数据库三级联动怎么做

WBOY
풀어 주다: 2016-06-20 12:46:43
원래의
920명이 탐색했습니다.


   这么做到选择国家的时候省市和市区显示  选择市区的时候出现省市和国家的选择  。   

<form action="city.php?module=add" method="Post" name='frmdirection' id='frmdirection'>	<input type="hidden" name="id" value="{$data.id}" id="uid"/>    <table  width="100%" border="0" cellpadding="0" cellspacing="0" class="ttbb2">		<tr>        <td width="40%" align="right" bgcolor="#e9f4ff"><strong>地区/行政区域</strong></td>        <td>		<input type="radio" name="pos_occu" value="2" {if $data.parentid eq "" or $data.parentid neq "99999"}checked="checked"{/if}  onclick="clickRadio()"/>地区        <input type="radio" name="pos_occu" value="0" {if $data.parentid eq "" or $data.parentid neq '99999'}checked="checked"{/if}  onclick="clickRadio()"/>省份        <input type="radio" name="pos_occu" value="1" {if $data.parentid eq '99999'}checked="checked"{/if} onclick="clickRadio()"/>国家                 </td>        </tr>        <tr>        <td width="40%" align="right" bgcolor="#e9f4ff"><strong>名称</strong></td>        <td><input type ="text"  class="txt150"   name = "data[name]" value="{$data.name}"  id="name">          </td>        </tr>        <tr  >        <td width="40%" align="right" bgcolor="#e9f4ff"><strong>所属国家</strong></td>        <td>        <select name = "data[parentid]"   id="parentid"  {if $data.parentid neq '99999'}style="display:block"{else}style="display:none"{/if}>          	{foreach from=$parent item=item key=index}            <option value="{$item.id}"            {if $item.id eq $data.parentid && $data.parentid neq ""}            selected="selected"            {/if}            >{$item.name} </option>            {/foreach}          </select>          </td>        </tr>  		<tr >        <td width="40%" align="right" bgcolor="#e9f4ff"><strong>所属省份</strong></td>        <td>        <select name = "data[parentid]"   id="parentid"  {if $data.parentid neq "99999"}style="display:block"{else}style="display:none"{/if}>          	{foreach from=$parent item=item key=index}            <option value="{$item.id}"            {if $item.id eq $data.parentid && $data.parentid neq ""}            selected="selected"            {/if}            >{$item.name} </option>            {/foreach}          </select>          </td>        </tr>  </table></form>
로그인 후 복사


回复讨论(解决方案)

没明白 你想干什么 
是数据库设计不好 
还是代码不会写

원천:php.cn
본 웹사이트의 성명
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
인기 튜토리얼
더>
최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿