私はこれに腹を立てています、私はjqueryダイアログボックスを設定しています、それをエコーするために使用しているコードは次のとおりです:
echo "
<div class='dialog' title='Edit Record'>
<form method='post'>
<table>
<tr>
<td>Name</td>
<td><input type='text' value='$row[name]' name='name'></td>
</tr>
<tr>
<td>Cash Down</td>
<td><input type='text' value='$row[cash]' name='cash'></td>
</tr>
<tr>
<td>Amount</td>
<td><input type='text' value='$row[amount]' name='amount'></td>
</tr>
<tr>
<td>Mem Type</td>
<td><input type='text' value='$row[type]' name='type'></td>
</tr>
<tr>
<td>Code</td>
<td><input type='text' value='$row[code]' name='code'></td>
</tr>
<tr>
<td>Month</td>
<td><input type='text' value='$row[m]' name='m'></td>
</tr>
<tr>
<td>Instructor</td>
<td><input type='text' value='$row[instructor]' name='instructor'></td>
</tr>
</table>
<input type='submit' value='Edit' name='Editrenewal'>
</form>
</div>";
エコーされたダイアログを開く前に、私のページは次のようになります。
ダイアログをトリガーするリンクをクリックすると、次のようになります。
すべてがどれだけ大きく醜くなっているかがはっきりとわかります