日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問(wèn) 生活随笔!

生活随笔

當(dāng)前位置: 首頁(yè) > 编程资源 > 编程问答 >内容正文

编程问答

jQuery Raty星级评分插件使用方法

發(fā)布時(shí)間:2023/12/3 编程问答 26 豆豆
生活随笔 收集整理的這篇文章主要介紹了 jQuery Raty星级评分插件使用方法 小編覺(jué)得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

轉(zhuǎn)載自??jQuery?Raty星級(jí)評(píng)分插件使用方法?

使用jQuery Raty,可以很方便的在頁(yè)面上嵌入一個(gè)評(píng)分組件,如下所示:

????

使用方法很簡(jiǎn)單,首先從https://github.com/wbotelhos/raty下載raty的源代碼(依賴(lài)于jquery)

然后在頁(yè)面中引入相應(yīng)的js文件、css文件、圖片資源,在需要添加評(píng)分組件的元素上(比如span標(biāo)簽)添加下面的jquery代碼即可:

$('span').raty();

以上為jQuery Raty的缺省使用方法,此外,該組件還支持豐富的傳入?yún)?shù)和回調(diào)函數(shù),例如:

設(shè)置jQuery Raty的初始評(píng)分:

????

評(píng)分回調(diào)函數(shù)

????

如果需要根據(jù)后臺(tái)動(dòng)態(tài)設(shè)置初始評(píng)分,可以使用回調(diào)函數(shù)實(shí)現(xiàn)。例如使用div中的data-attribute屬性:

<div data-score="1"></div>

$('div').raty({score: function() {return $(this).attr('data-score');} });

還可以改變星星的個(gè)數(shù):

?????????

$('div').raty({ number: 10 });

只讀模式:

????

$('div').raty({ readOnly: true, score: 3 });

點(diǎn)擊事件:

????

$('div').raty({click: function(score, evt) {alert('ID: ' + this.id + "\nscore: " + score + "\nevent: " + evt);} });

路徑:

變更圖標(biāo)保存的位置,所有圖標(biāo)需要位于同一目錄下,路徑結(jié)尾的/不添加也可以

<div data-path="assets/images"></div>

$('div').raty({path: function() {return this.getAttribute('data-path');} });

取消評(píng)分:

?????

$('div').raty({ cancel: true });

全局改變?cè)O(shè)置:

你可以全局更改上述提到的所有設(shè)置 $.fn.raty.defaults.OPTION = VALUE;. 該語(yǔ)句必須添加在插件綁定之前。

$.fn.raty.defaults.path = assets; $.fn.raty.defaults.cancel = true;

參數(shù)列表:

cancel : false // Creates a cancel button to cancel the rating. cancelClass : 'raty-cancel' // Name of cancel's class. cancelHint : 'Cancel this rating!' // The cancel's button hint. cancelOff : 'cancel-off.png' // Icon used on active cancel. cancelOn : 'cancel-on.png' // Icon used inactive cancel. cancelPlace : 'left' // Cancel's button position. click : undefined // Callback executed on rating click. half : false // Enables half star selection. halfShow : true // Enables half star display. hints : ['bad', 'poor', 'regular', 'good', 'gorgeous'] // Hints used on each star. iconRange : undefined // Object list with position and icon on and off to do a mixed icons. mouseout : undefined // Callback executed on mouseout. mouseover : undefined // Callback executed on mouseover. noRatedMsg : 'Not rated yet!' // Hint for no rated elements when it's readOnly. number : 5 // Number of stars that will be presented. numberMax : 20 // Max of star the option number can creates. path : undefined // A global locate where the icon will be looked. precision : false // Enables the selection of a precision score. readOnly : false // Turns the rating read-only. round : { down: .25, full: .6, up: .76 } // Included values attributes to do the score round math. score : undefined // Initial rating. scoreName : 'score' // Name of the hidden field that holds the score value. single : false // Enables just a single star selection. space : true // Puts space between the icons. starHalf : 'star-half.png' // The name of the half star image. starOff : 'star-off.png' // Name of the star image off. starOn : 'star-on.png' // Name of the star image on. target : undefined // Element selector where the score will be displayed. targetFormat: '{score}' // Template to interpolate the score in. targetKeep : false // If the last rating value will be keeped after mouseout. targetScore : undefined // Element selector where the score will be filled, instead of creating a new hidden field (scoreName option). targetText : '' // Default text setted on target. targetType : 'hint' // Option to choose if target will receive hint o 'score' type. starType : 'img' // Element used to represent a star.

回調(diào)函數(shù)列表:

$('div').raty('score'); // Get the current score.$('div').raty('score', number); // Set the score.$('div').raty('click', number); // Click on some star.$('div').raty('readOnly', boolean); // Change the read-only state.$('div').raty('cancel', boolean); // Cancel the rating. The last param force the click callback.$('div').raty('reload'); // Reload the rating with the current configuration.$('div').raty('set', { option: value }); // Reset the rating with new configurations.$('div').raty('destroy'); // Destroy the bind and give you the raw element.$('div').raty('move', number); // Move the mouse to the given score point position.

總結(jié)

以上是生活随笔為你收集整理的jQuery Raty星级评分插件使用方法的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問(wèn)題。

如果覺(jué)得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。