今天,我需要一些jquery的帮助,而我确实对此并不了解。在下面的代码中,我在“ variablecommentlimitneedstogehere”位置处如何放置已定义为commentlimit的变量。我尝试了许多不同的方法,但没有成功。谢谢!
<input type='hidden' id='commentlimit' value='8'/>
<script>
$(window).scroll(function () {
if ($(window).scrollTop() >= $(document).height() - $(window).height()) {
document.getElementById("loadingcomments").style.display = 'block';
var commentlimit = document.getElementById('commentlimit').value;
$('#load').load('getprofilecomments.php?username=<?php echo $profilename; ?>&commentlimit=variablcommentlimitneedstogohere');
//alert('end of page');
}
});
</script>
最佳答案
$('#load').load('getprofilecomments.php?username=<?php echo $profilename; ?>&commentlimit=' + commentlimit);
jQuery基于javascript,因此语法相同:)
PS:如果您使用的是jQuery,则可以轻松完成许多操作:var commentlimit = $("#commentlimit").val();
$("#loadingcomments").css("display", "block");
关于javascript - 协助jQuery变量,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/9070864/