巴巴运动网源码 传智博客出品 不全 一部分代码 可以参考

源代码在线查看: comment.js

软件大小: 1707 K
上传用户: ywq9089
关键词: 源码 博客 代码
下载地址: 免注册下载 普通下载 VIP

相关代码

					function comment_support(commentid){
						if(commentid != getCookie("currentCommentID")){
							var form = document.forms["supportOropposeForm"];
							form.method.value = "support";
							form.productId.value = commentid;			
							var objspcount = document.getElementById('spcount_'+ commentid);			
							form.submit();
							objspcount.innerText = parseInt(objspcount.innerText) +1;
							document.getElementById("commentiframe").src="about:blank"
							setCookie("currentCommentID", commentid, 10*60);
						}else{
							alert("您已经为该贴投过票");
						}
					}
				
				    function comment_oppose(commentid){
						if(commentid != getCookie("currentCommentID")){
							var form = document.forms["supportOropposeForm"];
							form.method.value = "oppose";
							form.productId.value = commentid;
							var objopcount = document.getElementById('opcount_'+ commentid); 			
							form.submit();
							objopcount.innerText = parseInt(objopcount.innerText) +1;
							document.getElementById("commentiframe").src="about:blank"
							setCookie("currentCommentID", commentid, 10*60);
						}else{
							alert("您已经为该贴投过票");
						}
					}			

相关资源