2009年3月22日 星期日

2009年3月19日 星期四

CSS在FireFox與IE下呈現問題

IE7
*+html selector {css 設計內容}

IE5-IE6
* html selector {css 設計內容}

EX:
.plink {cursor:pointer;}  /* FF */
* html .plink {cursor:hand;}   /* for IE 6.0以前版本 */
*+html .plink {cursor:hand;}   /* for IE 7.0版本 */

參考資料:

2009年3月9日 星期一

php 型態轉換

  • (int)、(integer) => 轉換成整數
  • (real)、(double)、(float) => 轉換成浮點數
  • (string) => 轉換成字串
  • (array) => 轉換成陣列
  • (object) => 轉換成物件
EX:$c = (int) (123 / 4);

php track_errors

  • PHP程式需要取得錯誤訊息,可以在php.ini檔案開啟track_errors功能
  • 在找到track_errors後,將預設值Off改為On,如此就可以在PHP程式使用$php_errormsg變數取得錯誤訊息
    EX:echo "錯誤訊息:".$php_errormsg;

2009年3月2日 星期一

blockUI 在ie無法unblockUI解決方式

資料來源:http://insen.blogbus.com/logs/31793938.html
EX:
$('#myForm').ajaxForm({
 beforeSubmit:function(a,f,o){
  $.blockUI({ message: 'Please wait few sec...<img src="css/flexigrid/images/load.gif">' });
 },
 dataType:'html',
 success:function(data){
  alert(data);
  $(".blockUI").fadeOut("slow");
 }
});