http://border-radius.com/
就是這個網址!
操作非常簡單,就是分別在四個角輸入要的角度,code會自動產生在中間的區塊,下方的三個選擇也可以分別選擇要不要-webkit 或是-moz的前置詞。
就是這個網址!
操作非常簡單,就是分別在四個角輸入要的角度,code會自動產生在中間的區塊,下方的三個選擇也可以分別選擇要不要-webkit 或是-moz的前置詞。
$today
= date("Y-m-d");
//取得今天日期
$create_time
= $record [ ' 設定時間(或是建立日期)的欄位 ' ] ;
$d1 =
strtotime ( $ today ) ;
$d2 =
strtotime ( $create_time 2 );
$Days=round(($d2-$d1)/3600/24);
//echo
"今天與某筆資料的建立日期相差".$Days."天";
也就是說 這裡的$Days的值,已經計算出相差的天數了。
|
<select name="form_month"
id="form_month">
<?php
for($m=1;
$m<= 12 ;$m++)
{
echo
'<option value="$m">'.$m.'</option>';
}
?>
</select>月
|
<select name="form_month"
id="form_month">
<?php
for($m=1;
$m<= 12 ;$m++)
{
echo
'<option value=" '. $m .' ">'.$m.'</option>';
}
?>
</select>月
|
要在畫面一進來 focus multiselect 的方式: 參考: https://jsfiddle.net/shentao/mnphdt2g/ 主要就是在 multiselect 的 tag 加上 ref (例如: my_multiselect), 另外在 mounted...