我有一个打印特定DIV的代码,我用PHP来获取列表。
<?php
$hentgg = mysql_query("SELECT * FROM dansetimer WHERE dato = '$dato' ORDER BY id ASC LIMIT 5") or die(mysql_error());
if(mysql_num_rows($hentgg)) {
while($visgg = mysql_fetch_array($hentgg)) {
?>
<div id="mydiv">
The div thats beeing printede
</div>
<div class="note">
Shows the user info
</div>
<?php
}
} else {
echo "Fail - no lines";
}
?>
我的问题是,如果我的列表中有2行,它总是打印第一行的DIV,那怎么可能 - 我使用以下Javascript
<script type="text/javascript" src="http://jqueryjs.googlecode.com/files/jquery-1.3.1.min.js" > </script>
<script type="text/javascript">
function PrintElem(elem)
{
Popup($(elem).html());
}
function Popup(data)
{
var mywindow = window.open('', 'my div', 'height=50mm,width=80mm');
mywindow.document.write('<html><head><title>Handskemager Dans</title>');
mywindow.document.write('<link rel="stylesheet" href="http://terminal.dance4fun.dk/medlem/mainbon.css" type="text/css" />');
mywindow.document.write('</head><body >');
mywindow.document.write(data);
mywindow.document.write('</body></html>');
mywindow.document.close(); // necessary for IE >= 10
mywindow.focus(); // necessary for IE >= 10
mywindow.print();
mywindow.close();
popupWindow.hide ();
return true;
}
</script>
通常我隐藏div,所以它只被打印,但如果我选择显示div,它看起来是正确的(见下图)
但是一旦打印,它就会打印出USER A的第一个div。
答案 0 :(得分:0)
我一定很累; - )
但答案当然是:
<div class="mydiv<?php echo $id; ?>">
当然还有按钮
<a href="#" onclick="PrintElem('.mydiv<?php echo $id; ?>')" />
感谢您的支持。