投票喜欢/不喜欢 ajax无刷新
JavaScript Code
- <scripttype="text/javascript">
- $(document).ready(function()
- {
- $(".like").click(function()
- varid=$(this).attr("id");
- varname=$(this).attr("name");
- vardataString='id='+id+'&name='+name;
- $("#voteBox").slideDown("slow");
- $("#flash").fadeIn("slow");
- $.ajax
- ({
- type:"POST",
- url:"rating.PHP",
- data:dataString,
- cache:false,0);">success:function(html)
- {
- $("#flash").fadeOut("slow");
- $("#content").html(html);
- }
- });
- });
- $(".close").click(function()
- $("#voteBox").slideUp("slow");
- </script>
XML/HTML Code