大拇指向上/向下评分脚本

简单 Ajax 支持或反对脚本允许用户对网页上的项目进行评价或投票。这是在你网站上设置调查最简单的方法。允许用户单击拇指图片投票或评价。

特点

  • 支持(顶)或反对(踩)来进行投票。
  • 容易定制 - 通过 CSS 修改颜色,字体和其他样式。
  • 不需要数据库支持,因为结果存储在文件中。
  • 投票脚本支持几乎所有浏览器。

预览

代码

Javascript 代码
<!-- Script by hscripts.com -->
<!-- Copyright of HIOXINDIA -->
<!-- More scripts @www.hscripts.com -->
<script type="text/javascript">
var httpa;
var browser = navigator.appName;
function createRequestObject(){
var request_o; //declare the variable to hold the object.
if(browser == "Microsoft Internet Explorer"){
/* Create the object using MSIE's method */
request_o = new ActiveXObject("Microsoft.XMLHTTP");
}else{
/* Create the object using other browser's method */
request_o = new XMLHttpRequest();
}
return request_o; //return the object
}
function setrating(val,id)
{
httpa = createRequestObject();
var str="hupanddown/addrating.php?id="+id+"&value="+val;
httpa.open('get', str);
httpa.onreadystatechange = handleResponse;
httpa.send(null);
}
function handleResponse() {
if(httpa.readyState == 4){
var response = httpa.responseText;
document.getElementById('prc').value=response;
}
}
function ctck()
{
var sds = document.getElementById("dum");
if(sds == null){alert("Esta utilizando un paquete gratuito. No esta autorizado para retirar la etiqueta");}
var sdss = document.getElementById("dumdiv");
if(sdss == null){alert("Esta utilizando un paquete gratuito. No esta autorizado para retirar la etiqueta");}
}
document.onload="ctck()";
</script>
<!-- Script by hscripts.com -->

HTML 代码
<table style='border:1px solid green;' cellspacing=0 cellpadding=0><tr><td>
<input id=prc name=prc type=text size=6 value=1 readonly style='background-color: white; border: 0px;'>
<img border=0 src="hupanddown/uarrow.gif" onclick="setrating(document.getElementById('prc').value,'uarrow');">
<img border=0 src="hupanddown/darrow.gif" onclick="setrating(document.getElementById('prc').value,'darrow');">
</td></tr>
</table>
<div align=center style='font-size: 10px; color: #dadada;' id="dumdiv">
<a href="https://www.hscripts.com" id="dum" style='text-decoration:none; color: #dadada;'>&copy;hscripts.com</a></div>

用法

  • 下载并解压缩文件。你将得到 addrating.php 和相关图片文件。
  • 复制并粘贴到您的HTML页面的JavaScript代码,并利用这个评价脚本使用。
  • 这里,函数 setrating() 用于通过 ajax 增加或减少投票值。
  • 易于安装和定制。

牌照

  • 本Ajax脚本/ HTML代码是GPL许可下给予.
  • 即免费使用那些谁使用,因为它是它.
  • 免费的,如果你的修改不会删除我们的版权信息和链接.
  • 详细许可证资料可在这里找到
  • 你可以购买脚本如果你的要求不符合GPL授权条款.