透視 WebMVC
http://www.php.net/manual/en/language.oop5.php
2009年5月28日 星期四
2009年5月21日 星期四
使用NuSOAP建構webservice
NuSOAP的使用说明
http://www.shanghuo.net/?action=show&id=51
使用C#叫用PHP寫的webservice
http://www.sanity-free.org/125/php_webservices_and_csharp_dotnet_soap_clients.html
NuSOAP教程
http://www.phpq.net/tag/NuSOAP/http://www.shanghuo.net/?action=show&id=51
使用C#叫用PHP寫的webservice
http://www.sanity-free.org/125/php_webservices_and_csharp_dotnet_soap_clients.html
php SOAP 簡單的示範
2009年5月18日 星期一
在IE與其他瀏覽器中動態設定class屬性
有時候需要動態改變元素的class屬性
例如~ 點選完月曆日期連結後,要顯示點選日期的背景顏色~
Firefox中通常使用
var element = document.getElementById("elementID")
element.setAttribute("class","styleClass") ;
就可以了~ 但IE與Firefox中設定的方式有差異喔~
在IE中要用
element.setAttribute("className","styleClass");
因為IE只識別 " className"~
例如~ 點選完月曆日期連結後,要顯示點選日期的背景顏色~
Firefox中通常使用
var element = document.getElementById("elementID")
element.setAttribute("class","styleClass") ;
就可以了~ 但IE與Firefox中設定的方式有差異喔~
在IE中要用
element.setAttribute("className","styleClass");
因為IE只識別 " className"~
訂閱:
文章 (Atom)