PIXNET Logo登入

小 春 日 和

跳到主文

部落格全站分類:攝影寫真

  • 相簿
  • 部落格
  • 留言
  • 名片
  • 7月 31 週三 201318:01
  • JQ|模擬點擊

$("#btn1").bind('click',function(){
    //       
})
$("#btn1").trigger("click");
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(114)

  • 個人分類:JQ
▲top
  • 7月 31 週三 201317:59
  • JQ|送出表單後,把表單值清空

用AJAX送出表單後,會希望將欄位裡面的值全部清空
$("form[name='pressForm']").find(":text,textarea,input").each(function() {
          $(this).val("");
      });
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(977)

  • 個人分類:JQ
▲top
  • 6月 07 週五 201311:39
  • JQ|$("div.gallery .image img").load() 確保可以抓到圖片的高

/*  get the image height */
function heightItem(){
  $("div.gallery .image img").load(function(){
  var height = $(this).height();
  alert(height);
  });
}
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(173)

  • 個人分類:JQ
▲top
  • 5月 14 週二 201317:16
  • JQ|判斷是否為手持裝置瀏覽(userAgent)

/*判斷是否為手持裝置*/
function is_mobile() {
        var mobiles = new Array("midp", "j2me", "avant", "docomo", "novarra",
                "palmos", "palmsource", "240x320", "opwv", "chtml", "pda",
                "windows ce", "mmp/", "blackberry", "mib/", "symbian", "wireless",
                "nokia", "hand", "mobi", "phone", "cdm", "up.b", "audio", "sie-",
                "sec-", "samsung", "htc", "mot-", "mitsu", "sagem", "sony", "alcatel",
                "lg", "eric", "vx", "NEC", "philips", "mmm", "xx", "panasonic",
                "sharp", "wap", "sch", "rover", "pocket", "benq", "java", "pt", "pg",
                "vox", "amoi", "bird", "compal", "kg", "voda", "sany", "kdd", "dbt",
                "sendo", "sgh", "gradi", "jb", "dddi", "moto", "iphone", "android",
                "iPod", "incognito", "webmate", "dream", "cupcake", "webos", "s8000",
                "bada", "googlebot-mobile")
        var ua = navigator.userAgent.toLowerCase();
        var isMobile = false;
        for ( var i = 0; i < mobiles.length; i++) {
            if (ua.indexOf(mobiles[i]) > 0) {
                isMobile = true;
                break;
            }
        }
        return isMobile;
}
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(416)

  • 個人分類:JQ
▲top
  • 5月 14 週二 201317:10
  • JQ|AJAX設定成同步執行

<script type="text/javascript" src="./js/jquery-1.8.0.js"></script>
<script type="text/javascript" defer>
$(function() {
   $.ajax({
                url : "js/jquery.tinyscrollbar.min.js",
                dataType : "script",
                async: false    // 先把這隻js執行完後,再跑下面的程式,如果不寫此參數,jQuery預設AJAX為異步執行
   });
   ......其他要執行的程式........
});
</script>
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(11,901)

  • 個人分類:JQ
▲top
  • 4月 22 週一 201315:32
  • 傳值,切頁(js/post/get)及本頁(ajax)

基本的網頁傳值,以前都換頁用POST/GET居多
但是使用此方法,需要轉頁
通常都會利用一個隱藏的input表單 偷偷利用js來做傳值的動作
程式如下:
<form action='./admin/edit_feature' method='post' id='product_list'>
<input type='hidden' id='product_id' name='product_id' value=''>
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(1) 人氣(11,460)

  • 個人分類:JQ
▲top
  • 3月 20 週三 201313:00
  • JQ|Setting cookies with jQuery

使用前要先下載並引入:jquery.cookie.js
(https://github.com/carhartl/jquery-cookie)
 
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(725)

  • 個人分類:JQ
▲top
  • 2月 25 週一 201314:45
  • JQ|動態設定iFrame高度

 
head裡面填入
<script src="http://code.jquery.com/jquery-1.7.1.min.js"></script>
<script type="text/javascript">
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(3,302)

  • 個人分類:JQ
▲top
  • 1月 28 週一 201311:46
  • JS|網站轉到對應的國家語系

<script type="text/javascript" src="http://j.maxmind.com/app/geoip.js"></script>
<script>
(function() {
/*確認使用者是否第一次進入本網頁*/
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(833)

  • 個人分類:JQ
▲top
  • 1月 08 週二 201315:00
  • JQ|Mega Dropdown Menu Plugin

範例下載:
http://www.designchemical.com/lab/jquery-mega-drop-down-menu-plugin/examples/#
http://djdesignerlab.com/2011/07/08/16-jquery-menus-with-beautiful-animations-for-developers/
(繼續閱讀...)
文章標籤

cabuchi 發表在 痞客邦 留言(0) 人氣(469)

  • 個人分類:JQ
▲top
12»

熱

  • (6,398)程式設計師的態度 哈哈好忠肯
  • (35,176)AppServ|安裝後無法啟用apache的原因

近

  • HTTP|request method淺談
  • JS|cookies關掉瀏覽器不一定會真的清乾淨
  • 電影|聽說桐島退社了
  • PHP|抓資料夾全部檔案
  • PHP|APC upload process bar
  • Smarty|下拉選單1-50數字
  • JQ|模擬點擊
  • JQ|送出表單後,把表單值清空
  • PHP|把日期轉成我要的格式
  • Codeigniter|移除網址上的index.php

分

toggle 程式語言 (7)
  • Android Mobile (0)
  • drupel (3)
  • drupel (2)
  • FLASH CS3 (3)
  • API (0)
  • Other (1)
  • js (1)
  • HTTP (1)
  • Smarty (1)
  • YOUTUBE (2)
  • ASP (1)
  • FB (2)
  • MIS (0)
  • System (0)
  • MYSQL (2)
  • google analytics (1)
  • Cent OS (5)
  • JQ (19)
  • 面試 (3)
  • 國外旅遊 (1)
  • CSS (20)
  • 網路軟體設定 (5)
  • 作業學習 (3)
  • PHP (11)
  • JSP (2)
  • 筆記 (13)
  • 隨拍 (7)
  • 隨筆 (64)
  • 旅行 (7)
  • 未分類文章 (1)

pixGoogleAdsense1

pixGoogleAdsense2

*

文章彙整

參觀人氣

  • 本日人氣:
  • 累積人氣: