鎖表格欄位有三種方法

1.readonly="readonly" 此方法並不會有表格的框框

<form action="result.php" method="post">

<tr>

<td colspan="2" bgcolor="#FFFFFF">

<input type="text" name="name" value="<?php echo $rs[1]; ?>" readonly="readonly"/>

</td>

</tr>

2. onfocus="blur()" 此方法有表格的框框

<form action="result.php" method="post">

<tr>

<td colspan="2" bgcolor="#FFFFFF">

<input type="text" name="name" onfocus="blur()" value="<?php echo $rs[1]; ?>"/>

</td>

</tr>

 

3. disabled="disabled" 注意不能post

<form action="result.php" method="post">

<tr>

<td colspan="2" bgcolor="#FFFFFF">

<input type="text" name="name" disabled="disabled" value="<?php echo $rs[1]; ?>"/>

</td>

</tr>

arrow
arrow
    全站熱搜
    創作者介紹
    創作者 晨柚 的頭像
    晨柚

    晨柚的部落格

    晨柚 發表在 痞客邦 留言(0) 人氣()