花魁直播高品质美女在线视频互动社区 - 花魁直播官方版

 歡迎來(lái)到素材無(wú)憂網(wǎng),按 + 收藏我們
登錄 注冊(cè) 退出 找回密碼

dedecms自定義表單用js代替聯(lián)動(dòng)類型解決聯(lián)動(dòng)問題

時(shí)間: 2019-05-13 10:22 閱讀: 作者:素材無(wú)憂網(wǎng)

dede DEDECMS內(nèi)置的聯(lián)動(dòng)類型被注釋掉了,網(wǎng)上有解決聯(lián)動(dòng)類型的例子,但存在后臺(tái)信息的是枚舉,都是數(shù)字,于是自己便采取了比較取巧的方案,用js代替聯(lián)動(dòng)類型 最近用DEDECMS完成一個(gè)自定義表單,要用到地區(qū)的三級(jí)級(jí)聯(lián),地區(qū)肯定要使用option下拉框,如果讓人一個(gè)個(gè)填肯定不行,DEDECMS內(nèi)置的聯(lián)動(dòng)類型被注釋掉了,網(wǎng)上有解決聯(lián)動(dòng)類型的例子,但存在后臺(tái)信息的是枚舉,都是數(shù)字,不方便查看,網(wǎng)上的解決方案都不怎么完全,嘗試了一下沒有成功,自己便采取了比較取巧的方案,用js代替聯(lián)動(dòng)類型

自定義表單的字段的類型都使用單行文本,設(shè)置完之后前臺(tái)查看,并瀏覽器查看它的源文件。

例如:


復(fù)制代碼代碼如下:
<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">地級(jí)市:</td>
<td><input type='text' name='city' id='city' style='width:250px' class='intxt' value='' />
</td>
</tr>
<tr>
<td align="right" valign="top">市、縣級(jí)市:</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>
<p align='center' style='height:30px;padding-top:10px;'>
<input type="submit" name="submit" value="提 交" class='coolbg' />
<input type="reset" name="reset" value="重 置" class='coolbg' />
</p>
</form>

修改它的form表單,改成自己所需要的樣式,并將province,city,country都改成select的類型,三級(jí)級(jí)聯(lián)使用js完成

如:

復(fù)制代碼代碼如下:
<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="地級(jí)市">地級(jí)市</option></select>
<select id="s_county" name="country" style="margin-left:20px;"><option value="市、縣級(jí)市">市、縣級(jí)市</option></select>
<script type="text/javascript" src="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>
<p align='center' style='height:30px;padding-top:10px;'>
<input type="submit" name="submit" value="提 交" class='coolbg' />
<input type="reset" name="reset" value="重 置" class='coolbg' />
</p>
</form>

版權(quán)聲明: 本站資源均來(lái)自互聯(lián)網(wǎng)或會(huì)員發(fā)布,如果侵犯了您的權(quán)益請(qǐng)與我們聯(lián)系,我們將在24小時(shí)內(nèi)刪除!謝謝!

轉(zhuǎn)載請(qǐng)注明: dedecms自定義表單用js代替聯(lián)動(dòng)類型解決聯(lián)動(dòng)問題

標(biāo)簽: dedecms dede  
相關(guān)文章
模板推薦