Home  >  Article  >  Backend Development  >  Automatically select the drop-down box without using JS when editing a piece of data in thinkphp_PHP Tutorial

Automatically select the drop-down box without using JS when editing a piece of data in thinkphp_PHP Tutorial

WBOY
WBOYOriginal
2016-07-12 09:03:55857browse

In thinkphp, when editing a piece of data, the drop-down box is automatically selected without using JS

<select name="auth_pid" id="auth_pid">
     <option value="0" >--请选择--</option>
     <volist name="auth_list" id="item">
          <eq name="item.auth_id" value="$auth_info.auth_pid">
              <option value="<{$item.auth_id}>" selected ><{$item.auth_name}></option>
            <else />
               <option value="<{$item.auth_id}>" ><{$item.auth_name}></option>
           </eq>
       </volist>
</select>

*Red text: The value that needs to be used to fix the comparison
*Blue text: The value of each record looped out that needs to be compared

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/1076510.htmlTechArticlethinkphp does not need JS to automatically select the drop-down box when editing a piece of data select name=auth_pid id=auth_pid option value= 0 --Please select--/option volist name=auth_list id=item eq name=it...
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn