简单的说:
<div style="position: absolute; left: 47px; top: 39px; width: 503px; height: 256px; overflow: hidden;">
<div style="width: 503px; height: 256px; overflow: auto;">
<?php include 'get_opwire.php'; ?>
</div>
</div>
<div style="position: absolute; left: 30px; top: 533px; width: 100px; height: 26px;">
<div style="width: 100px; height: 26px;">
<?php include 'usernameget.php'; ?>
</div>
</div>
这将显示 get_opwire.php 但不显示 usernameget.php
当我切换它们时......
<div style="position: absolute; left: 30px; top: 533px; width: 100px; height: 26px;">
<div style="width: 100px; height: 26px;">
<?php include 'usernameget.php'; ?>
</div>
</div>
<div style="position: absolute; left: 47px; top: 39px; width: 503px; height: 256px; overflow: hidden;">
<div style="width: 503px; height: 256px; overflow: auto;">
<?php include 'get_opwire.php'; ?>
</div>
</div>
这将显示 usernameget.php 但不显示 get_opwire.php
谁能告诉我这是为什么/如何显示两者?(这个文件主要是 html,并重命名为 .php 以解析上面的一些包含) 如果您想知道,嵌套的 div 来自 Xara 9 的 html 占位符系统。当我将它们清理到一个时,显示问题仍然存在。