本文共 972 字,大约阅读时间需要 3 分钟。
方法一、
| $(document).ready( function () $( "#summary" ).bind( "click" , {foo: 'abc' } ,GetCode); $( "#summary" ).bind( "click" , function () | | $( "#summary" ).bind( "click" , GetCode( "abc" )); | /** * 赞同评论 */function commentLike(cid) { //alert("innser = " + cid); $("#comment-agree-" + cid).unbind("click"); $.ajax({ type : "POST", url : contextPath + "/comment/commentlike", data : "cid=" + cid, success : function(success) { if (success) { // $("#comment-agree-" + cid).bind("click",function(){ commentLike(cid); }); //不能写成:$("#comment-agree-" + cid).bind("click",commentLike(cid)); 不然会变成死循环了 $('#like_' + cid).text(parseInt($('#like_' + cid).text()) + 1); //console.log(success); }/* else { $('#like_' + cid).text(parseInt($('#like_' + cid).text()) - 1); alert(friendTip); }*/ } });} |
转载地址:http://cvsxa.baihongyu.com/