码迷,mamicode.com
首页 > 其他好文 > 详细

jdownload的使用

时间:2015-09-11 12:34:59      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:

<!DOCTYPE html>

<html xmlns="http://www.w3.org/1999/xhtml">

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>

    <title></title>

    <link href="js/themes/base/jquery.ui.all.css" rel="stylesheet" />

    <link href="js/jquery.jdownload.css" rel="stylesheet" />

</head>

<body>

    <a title="title" id="download">点击预览下载</a>

    <script src="js/jquery-1.9.1.js"></script>

    <script src="js/ui/jquery-ui.js"></script>

    <script src="js/jquery.jdownload.js"></script>

    <script>

        $(document).ready(function () {

            $(‘#download‘).jDownload({

                event: ‘click‘,

                dialogWidth: 200,

                dialogHeight: 200,

                filePath: "/file/test.zip"

                

            });

        });

    </script>

</body>

</html

引用jquery和ui库,引用jquery.jdownload.js和样式。

 

 

参数说明

var config = { 

        root: "http://localhost:8080/",//你网站的地址。

        filePath     : null,

        event        : "click", // 默认是支持点击事件

        dialogTitle  : "文件下载",

        dialogDesc   : ‘点击下载‘,

        dialogWidth  : 200,

        dialogHeight : ‘auto‘,

        dialogModal  : true,

        showfileInfo : true,

        start        : null,

        stop         : null,

        download     : null,

        cancel       : null

    }

jdownload的使用

标签:

原文地址:http://www.cnblogs.com/mfc-itblog/p/4800452.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!