You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

54 lines
1.6 KiB
HTML

<!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" xml:lang="en" lang="en">
<head>
<title>jQuery Star Rating Plugin v3.14 (2012-02-08)</title>
<script src='../jquery-1.4.4.js' type="text/javascript"></script>
<script src='jquery.rating.pack.js' type="text/javascript" language="javascript"></script>
<link href='jquery.rating.css' type="text/css" rel="stylesheet"/>
<script>
$(function(){
$('form').submit(function(){
$('.test',this).html('');
$('input',this).each(function(){
if(this.checked) $('.test',this.form).append(''+this.name+': '+this.value+'<br/>');
});
return false;
});
});
</script>
<style type="text/css">
#headd {
background: -moz-linear-gradient(#FAFAFA, #EAEAEA) repeat scroll 0 0 transparent;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4), 0 0 10px rgba(0, 0, 0, 0.1);
height: 50px;
left: 0;
line-height: 1em;
position: fixed;
top: 0;
width: 100%;
z-index: 9999;
}
</style>
</head>
<body>
<div class="Clear" id="wrap">
<div class="Clear" id="headd">
<form action="" method="post" >
<input name="star200" type="radio" class="star" value="1"/>
<input name="star200" type="radio" class="star" value="2"/>
<input name="star200" type="radio" class="star" value="3" checked="checked"/>
<input name="star200" type="radio" class="star" value="4"/>
<input name="star200" type="radio" class="star" value="5"/>
<input type="submit" value="Ìá½»">
<span class="test"></span>
</form>
</div>
<div id="push"></div>
</div>
</body>
</html>