加载

时间:2015-07-31 21:56:57

标签: javascript php html css document.write

我有三个可以通过 document.write()来调用的php文件......但是他们的'div Style'位置是混乱的格式。我想定期带他们去......

带有120 * 240像素的

file1.php

document.write('
<?php 
//some PHP codes
//echo style
echo"<style>#ps2{height:240;width:120;line-height:12px;font-family:tahoma;}
p a{text-decoration:none;}</style>";
echo("<div id=\"ps2\">");
//some PHP codes
echo"</div>";
?>
');

调用php文件:

<script language="javascript" src="file1.php"></script>

如果我在同一页面中以468 * 60像素和 file3.php 以125 * 125像素调用 file2.php ,如何修复单独显示的所有代码和规则的。

  • 并且在任何页面中单独显示并定期显示在具有特定CSS的特定页面中...谢谢

1 个答案:

答案 0 :(得分:0)

由于您通过http加载文件,因此很容易

HTML:

<script src="file.php?x=468&y=60"></script>

file.php:

<?php
header('Content-type: text/javascript');

$html = <<<EOL
<style>
#ps2 {
   width: {$_GET['x']},
   height: {$_GET['y']}, etc....
EOL;
?>
document.write(<?php echo(json_encode($html)); ?>);

&GT;