主要是在項目學習中總結的一些東西
動态效果
flashbar滾動條,增加動态效果,直接嵌入html中
<!--flash滾動條-->
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="886" height="12" align="bottom">
<param name="movie" value="images/00.swf" />
<param name="quality" value="high" />
<embed src="images/00.swf" width="800" height="12" align="bottom" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"></embed>
</object>
<!-- ----------------------------------- -->
效果

打開一個新視窗
open() 方法用于打開一個新的浏覽器視窗或查找一個已命名的視窗。
window.open(URL,name,features,replace)
<html>
<body>
<script type="text/javascript">
myWindow=window.open('','','width=200,height=100')
myWindow.document.write("This is 'myWindow'")
myWindow.focus()
</script>
</body>
</html>
MySQL中文亂碼問題
設定MySQL的my.ini檔案
分别在[client] 标簽和 [mysqld]
添加:character_set_server=utf8