网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 表单按钮 >> 正文
最新文章
· 输入框输入提示代码
· 文本框提示代码
· 让表单ctrl加回车提交
· 简单代码实现JS多级Select联动菜单
· JS验证数字位数
· 带有介绍的Select列表菜单代码
· Js注册等待
· 点击按钮插入文字在文本框
· radio背景颜色选择器
· 表单内容提交等待效果
热门文章
 Js实现点击添加增加一行,点击删除
 DIV中实现input垂直居中
 常用的选择省份城市的联动下拉列表
 JS动态增加删除一组输入框
 jQuery实现Email邮箱地址自动补全代
 Select实现多选
 JS动态批量创建带表单文本框的表格
 JS实现上传本地图片前先预览
 日期选择下拉框
 漂亮的点击弹出的登陆框
相关文章
仿Discuz!论坛评分发帖弹出提示并渐渐消失
仿淘宝星级评分效果
可显隐的用户登陆表单
多表单checkbox全选、反选、不全选效果
不错的评分和意见反馈表单
来源:中国站长天空 更新时间:2009/12/2 23:53:31 阅读次数: 我要投稿
△运行 ☉预览 #复制 +收藏
特效代码:
<!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>
<title>不错的评分和意见反馈表单</title>
<meta http-equiv="content-type" content="text/html;charset=gb2312">
</head>
<body>
<!--把下面代码加到<body>与</body>之间-->
<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';
};
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('哦呵,提交成功了!');
}
</script>
</body>
</html>
△运行 ☉预览 #复制 +收藏
特效说明:
不错的评分和意见反馈表单
  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号