我有一个div(<div id="studentid1"></div>)
,其中数据是通过ajax调用加载的。我的ajax代码是:
jQuery(document).ready(function () {
jQuery("#btnstudent").on('click', function () {
btnstudent = jQuery("#ClassID").val();
ExamID = jQuery("#ExamID").val();
jQuery.ajax
({
type: "POST",
url: "getadmitcard.php",
data: {btnstudent: btnstudent, ExamID: ExamID},
cache: false,
success: function (html)
{
jQuery("#studentid1").html(html);
}
});
});
});
我的getadmitcard.php包含所有必要的代码,并将数据正确显示到student1 div中。
将所有内容显示在我的div中但是当我点击打印按钮时,显示所有内容。只有17/18页。它应该是35页(根据我的查询结果)。我的意思是打印不显示所有div内容。