jquery制作美化星星评分插件
下载资源(41)次
阅读次数(163)次
发布时间:2013-11-23

用法简介:
来源:xw素材网
jquery制作美化星星评分插件
代码引用:
<link href=
"css/rating_star.css"
rel=
"stylesheet"
type=
"text/css"
>
<script type=
"text/javascript"
src=
"js/jquery-1.3.2.min.js"
></script>
<script type=
"text/javascript"
src=
"js/rating_star.js"
></script>
|
代码调用:
<script language=
"javascript"
type=
"text/javascript"
>
function
test(value){
alert(
"This rating's value is "
+value);
}
$(
function
() {
$(
"#rating_simple1"
).webwidget_rating_sex({
rating_star_length: '5
',
rating_initial_value: '
',
rating_function_name: '
',//this is function name for click
directory: '
images/
'
});
$("#rating_simple2").webwidget_rating_sex({
rating_star_length: '
10
',
rating_initial_value: '
',
rating_function_name: '
',//this is function name for click
directory: '
images/
'
});
$("#rating_simple3").webwidget_rating_sex({
rating_star_length: '
10
',
rating_initial_value: '
4
',
rating_function_name: '
test
',//this is function name for click
directory: '
images/'
});
});
</script>
|
推荐阅读
- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09