<html>
<head>
</head>
<body>
<br><br>
<div id="panel1" style="height:500px;width:500px;border-style:solid;color:Blue;">
<div id="top-panel" style="height:40px;width:495px;border-style:solid;color:lavender;"></div>
<div id="mines" style="height:450px;width:495px;border-style:solid;color:lavender;">
<?php
$arr=array(array());
for($i=0;$i<10;$i++)
{
for($j=0;$j<10;$j++)
{
$arr[$i][$j]=0;
if($j==9){
echo "<button type='button' style='height:35px;width:35px;background-color:red;' name='<?php echo $i$j;?>' id='<?php echo $i$j;?>' />";
echo "<br/>";
}
else
{
echo "<button type='button' style='height:35px;width:35px;background-color:Blue;' name='<?php echo $i.$j;?>' id='<?php echo $i$j;?>' />";
}
}
}
for($i=0;$i<10;$i++)
{
for($j=0;$j<10;$j++)
{
$b=rand(1,10);
$c=rand(1,10);
$arr[$b][$c]=1;
}
}
?>
</div>
</div>
</body>
</html>
所以上面是一个多维数组的简单代码。在这里我使用“br”标签创建一个新行,如果%J == 9,意味着在列号到达9.我在表中完成它,它的工作。但在多维数组中,它不起作用。那么我们如何创建一条新线?
答案 0 :(得分:0)
您可以添加新的div
代替echo "<br/>";
使用echo "<div style='clear:both'>&nbso or your content if you want to print some thing</div>";
希望这一定能解决您的问题。
答案 1 :(得分:0)
你的'&lt; BR&gt;'被抓住&lt; BUTTON&gt;标签(如果您在Chrome下检查元素,您将看到它,我添加了新行以使其更容易)。尝试包含显式结束标记:
if($j==9){
echo "<button type='button' style='height:35px;width:35px;background-color:red;' name='$i$j' id='$i$j' ></button>\n";
echo "<br/>\n";
}
我删除了&lt;?php echo ...?&gt;因为你已经处于PHP模式。
答案 2 :(得分:0)
<?php
$arr=array(array());
for($i=0;$i<10;$i++)
{
for($j=0;$j<10;$j++)
{
$arr[$i][$j]=0;
if($j==9)
{
echo "<button type='button' style='height:35px;width:35px;background-color:red;' name='".$i.$j."' id='".$i.$j."' ></button>";
echo "<br/>";
}
else
{
echo "<button type='button' style='height:35px;width:35px;background-color:Blue;' name='".$i.$j."' id='".$i.$j."' ></button>";
}
}
}
for($i=0;$i<10;$i++)
{
for($j=0;$j<10;$j++)
{
$b=rand(1,10);
$c=rand(1,10);
$arr[$b][$c]=1;
}
}
?>
您没有关闭<button>
代码