为什么回声会在我页面的其余部分改变字体大小?

时间:2013-08-07 18:09:57

标签: php dialog echo

我对此感到生气,我正在设置一个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>";

在我打开echo'd对话框之前看到我的页面是什么样的:

before

然后当我点击触发对话框的链接时,它变为:

GRRR

你可以清楚地看到一切都变得更大和更丑陋

1 个答案:

答案 0 :(得分:1)

你是否回应身体内的div?