( , ). html- (screen.css print.css) javascript ..
, , js ( CSS- jquery).
:
"screen.css"
body {
background-color: #ccc;
}
"print.css"
body {
background-color: #fff;
}
"the-javascript-file.js"
$(document).ready(function()
{
if (isPrinting() == false)
{
init();
}
});
function isPrinting()
{
var isPrint = false;
if ($('body').css('background-color') == 'rgb(255, 255, 255)')
{
isPrint = true;
}
return isPrint;
}
function init()
{
}
! !
, :
- "screen.css"
- "#ccc"
- "the-javascript-file.js"
- JS ... "#ccc"...
- JS
- "print.css"
- "#fff"
- "the-javascript-file.js"
- JS
- JS : "#fff"
- JS :)
, -:)