例如我有一個禁用的輸入可以保存一段時間,但我想以友好的格式顯示給用戶。就像選擇元素一樣,帶有in的選項可以保存與顯示不同的值創建一個文本輸入的標籤,它是diffrenet,值爲
<select><option value=1>Label is there</option></select>
可以使用輸入來完成嗎?
像
<input type='text' value='<?=$time?>' label='<?=date('c',$time);?>' />
P.S:我不是要求一個佔位符。
目前Im做
<label for="app_time">Time</label>
<input type="hidden" value="2013-04-27 15:40:00" name="app_time">
<input type="text" value="27 Apr 13, 03:40" Disabled>
還有沒有其他的方法?
您最好將值存儲在隱藏元素中,並將標籤存儲在純文本框中。 – MatthewMcGovern 2013-04-30 08:37:19