一个不错的评分和反馈意见表单效果,可自定义要求输入反馈信息分数值,点击后弹出文本框效果。
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="content-type" content="text/html;charset=gb2312"> <meta name="keywords" content="武鸣人网站,武鸣信息网,武鸣本地网,武鸣信息资源平台,减肥,健身,励志,励志语录,js特效,网页特效"> <meta name="description" content="欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。"> <title>精美评分和发表反馈意见表单特效_武鸣人</title> </head> <body> <a href="https://www.wuming.ren">武鸣人</a>,各种信息资源免费发布,分享励志语录经典短句,减肥健身常识,各种js特效代码。网站很好记住,wuming.ren(武鸣拼音.ren域名后缀)<hr> <!--欢迎来到武鸣人信息资源平台,各种信息免费发布,资源共享合作共赢,分享互联网流行的励志语录经典短句,减肥健身健康小常识及打卡记录,收集各种js特效代码。--> <script type="text/javascript" src="https://www.wuming.ren/ad/tc.js"></script> <script type="text/javascript" src="https://www.wuming.ren/ad/a.js"></script> <form name="form1" method="post" action=""> 1、你对A项工作的评分:<br> <input type="radio" name="radioa" value="10">10分 <input type="radio" name="radioa" value="9">9分 <input type="radio" name="radioa" value="8">8分 <input type="radio" name="radioa" value="7">7分 <input type="radio" name="radioa" value="6">6分 <input type="radio" name="radioa" value="5">5分 <input type="radio" name="radioa" value="4">4分 <input type="radio" name="radioa" value="3">3分 <input type="radio" name="radioa" value="2">2分 <input type="radio" name="radioa" value="1">1分<br> <label style="display:none" id="bad1">请输入意见:<input type="text" name="texta"></label><br><br> 2、你对B项工作的评分:<br> <input type="radio" name="radiob" value="10">10分 <input type="radio" name="radiob" value="9">9分 <input type="radio" name="radiob" value="8">8分 <input type="radio" name="radiob" value="7">7分 <input type="radio" name="radiob" value="6">6分 <input type="radio" name="radiob" value="5">5分 <input type="radio" name="radiob" value="4">4分 <input type="radio" name="radiob" value="3">3分 <input type="radio" name="radiob" value="2">2分 <input type="radio" name="radiob" value="1">1分<br> <label style="display:none" id="bad2">请输入意见:<input type="text" name="textb"></label><br><br> <input type="submit" name="Submit" value="提交" onclick="return check()"> </form> <script language="javascript"> var F = document.forms['form1'], A = F.radioa, B = F.radiob, C = document.getElementById("bad1"), D = document.getElementById("bad2"), G = F.Submit, s1, s2; for (var i = 0; i < A.length; ++i) A[i].onclick = function() { s1 = this.value; C.style.display = s1 < 5 ? '': 'none'; }; for (var i = 0; i < B.length; ++i) B[i].onclick = function() { s2 = this.value; D.style.display = s2 < 5 ? '': 'none'; };//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) check = function() { if (!s1) return !! alert('请对A项工作进行评分!'); if (!s2) return !! alert('请对B项工作进行评分!'); if (s1 < 5 && F.texta.value.match(/^\s*$/)) return !! alert('请给出对A项工作改进的意见!'); if (s2 < 5 && F.textb.value.match(/^\s*$/)) return !! alert('请给出对B项工作改进的意见!'); alert('哦呵,提交成功了!'); }//武鸣人网站https://www.wuming.ren 网站很好记住,wuming.ren(武鸣拼音.ren域名后缀) </script> </body> </html>
本文来自武鸣人网站,转载请注明出处