目前分類:JavaScript (48)

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

http://jsfiddle.net/arunpjohny/9w2gZ/


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

http://www.jquerybyexample.net/2012/06/get-url-parameters-using-jquery.html

 

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

// 中文驗證
function isChinese ( str ) {

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

http://jquery-datatables-editable.googlecode.com/svn/trunk/media/js/jquery.dataTables.editable.js

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

http://smallpoint-program.blogspot.tw/2013/04/javascript-javascripturl.html


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

https://docs.angularjs.org/api/ng/provider/$interpolateProvider


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

<formaction="upload"enctype="multipart/form-data"method="post">

    Upload image:
    <inputid="image-file"type="file"name="file"/><inputtype="submit"value="Upload"/><scripttype="text/javascript">
        $('#image-file').bind('change',function(){
            alert('This file size is: '+this.files[0].size/1024/1024+"MB");});</script></form>

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

最後不用MasterPage來解決... 冏
 

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

Array.splice(0,1);

陣列.刪除(從第幾個開始,刪幾個);

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

javascript設定捲軸在IE失效,改設立Div跑出捲軸處理。

 

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

<input id="button" type="submit" name="button" value="enter" onclick="setTimeout(check(),3000);"/>

 

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

<script type="text/javascript">
        var clock;
        var year = 2014;
        var month = 5;  //月份從0開始算
        var date = 30;
        var h = 11;
        var m = 31;
        var s = 0;
        var ms = 0;

        var date = new Date(year, month, date, h, m, s, ms);   
        var now = new Date();
        var diff = date.getTime() / 1000 - now.getTime() / 1000;
        $(document).ready(function () {
            $(".indexLive").hide();

            if (diff <= 0) {
                $(".clock").hide();
                $(".indexLive").show();
            }
            // Instantiate a coutdown FlipClock
            clock = $('.clock').FlipClock(diff, {
                clockFace: 'DailyCounter',
                countdown: true,
            });
            
        });        
</script>
<script type="text/javascript">
        var countdownnumber = diff+2;
        var countdownid;
        $(document).ready(countdownfunc());
        function countdownfunc() {
            if (countdownnumber < 0) {
                //alert("倒數結束");
                $(".clock").hide("slow");
                $(".indexLive").show();
                clearTimeout(countdownid);
            } else {
                countdownnumber--;
                if (countdownid) {
                    clearTimeout(countdownid);
                }
                countdownid = setTimeout(countdownfunc, 1000);
            }
        }
</script>

        <div class="indexTimer">            
            <div class="clock" style="margin:2em;"></div>        
                <div class="indexLive">
                    <img src="_img/timeLive.png" />
            </div>
        </div>

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

<html>
<head>

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

function createButton(context, func){var button = document.createElement("input");
    button.type ="button";
    button.value ="im a button";
    button.onclick = func;
    context.appendChild(button);}

window.onload =function(){
    createButton(document.body,function(){
        highlight(this.parentNode.childNodes[1]);// Example of different context, copied function etc// createButton(this.parentNode, this.onclick);});}

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

  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:
  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:
  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:

http://blog.rx836.tw/blog/javascript-simple-object/


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

  • 這是一篇加密文章,請輸入密碼
  • 密碼提示:win
  • 請輸入密碼:

http://flipclockjs.com/faces/daily-counter


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

«12 3