目前分類:jQuery (71)

瀏覽方式: 標題列表 簡短摘要

<html>
<head>

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

var uA = navigator.userAgent;
        if (uA.match(/iPod/) || uA.match(/iPad/) || uA.match(/iPhone/) || uA.match(/Android/) || uA.match(/Windows Phone/)) {

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

https://dotblogs.com.tw/topcat/archive/2009/02/20/7250.aspx

範例程式如下:

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

$(document).ready(function(){
    $('a').on('click touchend',function(e){var el = $(this);var link = el.attr('href');
        window.location = link;
});
});

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

var MobileReg = /^(09)[0-9]{8}$/;
(str.match(MobileReg)) ? true : false

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

function calculate(str,limit) {

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

jQuery Number Format

https://www.customd.com/articles/11/jquery-number-format

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

一、抓不到append element

要把append element 放在 ajax success 裡

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

var url = window.location.href;
                if (url.indexOf("action=3") >= 0) {
                    $('html, body').animate({
                        scrollTop: $('.3').offset().top
                    }, 'fast');
                } else {
                    if (url.indexOf("action=2") >= 0) {
                        $("body, html").animate({
                            scrollTop: $('.2').offset().top
                        }, 'fast');
                    }
                }

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

window.location.href +="#mypara";
location.reload();

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

<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@mdo">Open modal for @mdo</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@fat">Open modal for @fat</button>
<button type="button" class="btn btn-primary" data-toggle="modal" data-target="#exampleModal" data-whatever="@getbootstrap">Open modal for @getbootstrap</button>
...more buttons...

<div class="modal fade" id="exampleModal" tabindex="-1" role="dialog" aria-labelledby="exampleModalLabel" aria-hidden="true">
  <div class="modal-dialog">
    <div class="modal-content">
      <div class="modal-header">
        <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button>
        <h4 class="modal-title" id="exampleModalLabel">New message</h4>
      </div>
      <div class="modal-body">
        <form>
          <div class="form-group">
            <label for="recipient-name" class="control-label">Recipient:</label>
            <input type="text" class="form-control" id="recipient-name">
          </div>
          <div class="form-group">
            <label for="message-text" class="control-label">Message:</label>
            <textarea class="form-control" id="message-text"></textarea>
          </div>
        </form>
      </div>
      <div class="modal-footer">
        <button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
        <button type="button" class="btn btn-primary">Send message</button>
      </div>
    </div>
  </div>
</div>

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

$('.img_div').load(function () {
      var window_h = $(window).height();
      var top = (window_h - $('.img_div').height()) / 2;
      top = top < 0 ? 0 : top;
      $('#popdiv').css({ top: top + 'px' });
})
$(window).resize(function () {
     var window_h = $(window).height();
     var top = (window_h - $('.img_div').height()) / 2;
     top = top < 0 ? 0 : top;
     $('#popdiv').css({ top: top + 'px' });
})

.img_div{
   max-width:90%;
   max-height:90%;
}

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

window.location.search = jQuery.query.set("rows",10);
var i= jQuery.query.get("rows");

http://plugins.jquery.com/query-object/

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

http://jsfiddle.net/CtH9k/

div {

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

var lastScrollTop =0;
$(window).scroll(

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

http://alvarotrigo.com/fullPage/#firstPage

http://www.thepetedesign.com/demos/onepage_scroll_demo.html

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

if($(this).css("margin-right") == "200px")
{

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

http://wrapbootstrap.com/preview/WB05SR527

 

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

 $('#dataTables-example').dataTable({ order: [[0, 'desc']] });

 $('#dataTables-example').dataTable()
                                    .columnFilter({
                                        aoColumnDefs: [{ "bSortable": false, "aTargets": [0] }],
                                        sPlaceHolder: "head:before",
                                        aoColumns: [{ type: "select" },
                                                  { type: "text" },
                                                  { type: "select" },
                                                  { type: "select" },
                                                          { type: "select" },
                                                          null
                                        ]
                                    });

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

$(window).scroll(function () {
            if ($(this).scrollTop() > 300) {
                $('#goTop').fadeIn("fast");
            } else {
                $('#goTop').stop().fadeOut("fast");
            }
        });

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

1 234