我有这样的事情......
$().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
传递给该函数?所以我可以在那里使用它......
答案 0 :(得分:4)
答案 1 :(得分:0)
应该没问题:
<button id="go">Go!</button>
<div id="TestDiv">dd</div>
$("#go").live('click', function(e) {
alert("win");
var TestVar = "Message :)";
$("#TestDiv").load("http://www.ryth.net/", function () {
alert(TestVar);
});
});