發表文章

目前顯示的是 8月, 2014的文章

[Ubuntu] 不負責任之phpmyadmin出現#1146 - Table 'phpmyadmin.pma_recent' doesn't exist錯誤之解法

原文引用 :  http://stackoverflow.com/questions/12760394/1146-table-phpmyadmin-pma-recent-doesnt-exist 懶得看只好快速解,但我不知道原因..沒甚麼時間google只能記錄下來 sudo vi /etc/phpmyadmin/config.inc.php 約在81行處 將所有的pma_ 改成 pma__ (兩個底線)

jQuery - 將function綁定再img上

$(document).ready(function() { // 將element中的img的id有開頭為"img_"的 全部綁上這個function $("img[id^='img_']").bind("click",function(){ // 在其中可直接取得該element的src ch_pic($(this).attr('src')); }); }); Reference : http://design2u.me/blog/943/jquery-notes-g-selector-the-selector