例如,我有一个禁用的输入,它包含一个时间跨度,但我想以友好的格式向用户展示它。就像选择元素一样,带有 in 的选项可以保存与显示的值不同的值
<select><option value=1>Label is there</option></select>
可以通过输入来完成吗?
就像是
<input type='text' value='<?=$time?>' label='<?=date('c',$time);?>' />
Ps:我不要求占位符。
目前我在做
<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>
还有其他方法吗?