dedecms自界说表单用js取代联动范例办理联动问题

DEDECMS内置的联动范例被注释掉了,网上有办理联动范例的例子,但存在靠山信息的是列举,都是数字,于是本身便采纳了较量取巧的方案,用js取代联动范例

 

最近用DEDECMS完成一个自界说表单,要用到地域的三级级联,地域必定要利用option下拉框,假如让人一个个填必定不可,DEDECMS内置的联动范例被注释掉了,网上有办理联动范例的例子,但存在靠山信息的是列举,都是数字,不利便查察,网上的办理方案都不怎么完全,实验了一下没有乐成,本身便采纳了较量取巧的方案,用js取代联动范例

自界说表单的字段的范例都利用单行文本,配置完之后前台查察,并欣赏器查察它的源文件。

譬喻:


复制代码代码如下:
<form action="/plus/diy.php" enctype="multipart/form-data" method="post"> <input type="hidden" name="action" value="post" /> <input type="hidden" name="diyid" value="1" /> <input type="hidden" name="do" value="2" /> <table style="width:97%;" cellpadding="0" cellspacing="1"> <tr> <td align="right" valign="top">省份:</td> <td><input type='text' name='province' id='province' style='width:250px' class='intxt' value='' /> </td> </tr> <tr> <td align="right" valign="top">地级市:</td> <td><input type='text' name='city' id='city' style='width:250px' class='intxt' value='' /> </td> </tr> <tr> <td align="right" valign="top">市、县级市:</td> <td><input type='text' name='country' id='country' style='width:250px' class='intxt' value='' /> </td> </tr> <input type="hidden" name="dede_fields" value="province,text;city,text;country,text" /> <input type="hidden" name="dede_fieldshash" value="652e45ca2c11e03bbe75d9f5ab1726ba" /></table> <div align='center' style='height:30px;padding-top:10px;'> <input type="submit" name="submit" value="提 交" class='coolbg' /> <input type="reset" name="reset" value="重 置" class='coolbg' /> </div> </form>  


修改它的form表单,改本钱身所需要的样式,并将province,city,country都改成select的范例,三级级联利用js完成

如:

复制代码代码如下: <form action="/plus/diy.php" enctype="multipart/form-data" method="post"> <input type="hidden" name="action" value="post" /> <input type="hidden" name="diyid" value="1" /> <input type="hidden" name="do" value="2" /> <select id="s_province" name="province"><option value="省份">省份</option></select> <select id="s_city" name="city" style="margin-left:20px;"><option value="地级市">地级市</option></select> <select id="s_county" name="country" style="margin-left:20px;"><option value="市、县级市">市、县级市</option></select> <script type="text/javascript" src=http://www.dede58.com/"js/area.js"></script> <script type="text/javascript">_init_area();</script> <input type="hidden" name="dede_fields" value="province,text;city,text;country,text" /> <input type="hidden" name="dede_fieldshash" value="652e45ca2c11e03bbe75d9f5ab1726ba" /></table> <div align='center' style='height:30px;padding-top:10px;'> <input type="submit" name="submit" value="提 交" class='coolbg' /> <input type="reset" name="reset" value="重 置" class='coolbg' /> </div> </form>  

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wsdsxd.html