12,166
社区成员




<script src="Inc/JS/jquery.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function () {
var bid = $("#fm_blogid").val();
path = "http://common.test.com/CommentService.svc/comments/"+bid;
$.ajax({
type: "GET",
contentType: "application/json",
url: path,
success: function (data) {
$("#divComment").html(data.Value);
}
});
});
</script>