This setting can be changed by logging in as a super user (Host user),going to Host Settings -- Advance Settings -- Other Settings. You will see the checkbox there for "Use Friendly Urls".
http://www.webdeveloper.com/forum/showthread.php?t=110183
星期五, 12月 07, 2007
星期日, 11月 25, 2007
script標籤的onload事件
在firefox中觸發的是onload事件,IE則是onreadystatechange
var o=document.createElement("script")
o.src="abc.js"
o[document.all?"onreadystatechange":"onload"]=function(){
//put your code here
}
document.body.appendChild(o)
o=null
http://www.ooso.net/index.php/archives/312
http://www.phpied.com/javascript-include-ready-onload/
http://www.phpied.com/javascript-include-ready-onload/
http://blog.roodo.com/rocksaying/archives/2716520.html
var o=document.createElement("script")
o.src="abc.js"
o[document.all?"onreadystatechange":"onload"]=function(){
//put your code here
}
document.body.appendChild(o)
o=null
http://www.ooso.net/index.php/archives/312
http://www.phpied.com/javascript-include-ready-onload/
http://www.phpied.com/javascript-include-ready-onload/
http://blog.roodo.com/rocksaying/archives/2716520.html
星期六, 11月 24, 2007
訂閱:
文章 (Atom)