1
我有這樣的事情......如何將變量傳遞給.post()?
$().ready(function() {
$(".post .comment_this").click(function() {
var comment_id = $(this).attr('rel');
$.post(url_base + 'bio/community/get_comments', { 'comment_id' : comment_id }, function (response) {
console.log(comment_id);
});
});
});
如何通過comment_id
到該功能?所以我可以在那裏使用它...
自動將現在的工作。^__^ – daGrevis
@daGrevis我嘟some了一些魔法咒語:)。 – kapa
單詞雜音+1。 :) – vbence