2

このプラグインの js ファイルをこのサイトから次 のようにインポートしてから<script type="text/javascript" src="/gestionRH/js/jquery/jqueryFileDownload.js"></script>

$.fileDownload('mypath'); 

Firebug には次のエラーが表示されます。TypeError: $.fileDownload is not a function

クロムはこれを示しています:UncaughtTypeError: Object function (a,b){return new d.fn.init(a,b,g)} has no method 'fileDownload'

これはコード全体

<%@ page language="java" import="java.util.*" pageEncoding="ISO-8859-1"%>


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>

     <script type="text/javascript"  src="/gestionRH/js/jquery/jquery13_min.js"></script>


    </head>
    <body>
    <input type="button" id="download" value="download">

    </body>
    <script type="text/javascript">
    $("#download").live("click",function(){
     $.fileDownload('C:\\Users\\free\\Desktop\\myworkspace\\gestionRH\\WebRoot\\fiches\\note.doc');
    });
    </script>
    </html>
4

1 に答える 1

3

同じ問題に直面する人にとって、問題はこれによるものです。パスが正しくありませんでした。サーバーからダウンロードする必要があるため、パスは

 $.fileDownload('http://localhost:8080/path/to/file');

いいえ$.fileDownload('C:\\Users\path\to\file');

于 2012-09-05T08:37:07.437 に答える