系统设置-基本属性-开启反馈反馈验证码:
<form class="message" name='feedback' method='post' enctype='multipart/form-data' action='[!--news.url--]e/enews/index.php'> <input name='enews' type='hidden' value='AddFeedback'> <input name='bid' type='hidden' value='1'> <input type="hidden" name="ecmsfrom" value="[!--news.url--]message/"> <table id="message_main"> <tbody> <tr> <th>标题: </th> <td> <span class="m_label">标题</span> <input id="name" name="title" type="text" class="m_input" /> </td> </tr> <tr> <th>联系人: </th> <td> <span class="m_label">联系人</span> <input id="name" name="name" type="text" class="m_input" /> </td> </tr> <tr> <th>电话:</th> <td> <span class="m_label">座机/手机号码</span> <input id="contact" name="mycall" type="text" class="m_input" /> </td> </tr> <tr> <th>留言内容:</th> <td> <span class="m_label c_label">请在此输入留言内容,我们会尽快与您联系。</span> <textarea id="content" rows="2" cols="80" name="saytext" class="m_input"></textarea> </td> </tr> <tr> <th>验证码:</th> <td> <div id="code"> <input id="checkcode" name="checkcode" type="text" /> <img id="checkCodeImg" src="[!--news.url--]e/ShowKey/?v=feedback" onClick="this.src='/e/ShowKey/?v=feedback&'+Math.random();"/> </div> </td> </tr> <tr> <th></th> <td><input type="submit" class="msgbtn" name="btn" value="发 送" /></td> </tr> </tbody> </table> </form>
反馈表单刷新验证码源代码:
<img id="checkCodeImg" src="[!--news.url--]e/ShowKey/?v=feedback" onClick="this.src='/e/ShowKey/?v=feedback&'+Math.random();"/>
留言簿刷新验证码源代码:
<img id="checkCodeImg" src="[!--news.url--]e/ShowKey/?v=gbook" onClick="this.src='/e/ShowKey/?v=gbook&'+Math.random();"/>
评论刷新验证码源代码:
<img id="checkCodeImg" src="[!--news.url--]e/ShowKey/?v=pl" onClick="this.src='/e/ShowKey/?v=pl&'+Math.random();"/>
会员登录验证码源代码:
两种方法实现点击更换网站验证码
今天分享的这个 点击更换任何验证码 适用于 帝国cms各版本 以及 其它网站 。
方法一:直接点击图片更换验证码
<img src="[!--news.url--]e/ShowKey/?v=reg" name="regKeyImg" id="regKeyImg" onclick="regKeyImg.src='/e/ShowKey/?v=reg&t='+Math.random()" title="看不清楚,点击刷新">
方法二:点击文字更换验证码
<img src="[!--news.url--]e/ShowKey/?v=reg" align="absmiddle" id="pl_20160219" name="pl_20160219"/>
<span onclick="pl_20160219.src='/e/ShowKey/?v=reg&t='+Math.random()" style="color:#f00">换一张</span>
为了便于看官理解,918帝国模板网已整理成万能公式。只要看官记住以下一行万能公式,基本上所有网站的点击更换验证码功能都可以实现!
万能公式
onclick="验证码id.src='验证码src&t='+Math.random()"