0

有谁知道我怎样才能将我自己的按钮连接到下载库而不是使用

<div id="downloadify"></div>

我想将它分配给其他一些按钮或元素。所以我可以避免使用它拥有的自定义按钮。

lib 页面中的演示是这样的:

<script type="text/javascript">
  Downloadify.create('downloadify',{
    filename: function(){
      return document.getElementById('filename').value;
    },
    data: function(){ 
      return document.getElementById('data').value;
    },
    onComplete: function(){ 
      alert('Your File Has Been Saved!'); 
    },
    onCancel: function(){ 
      alert('You have cancelled the saving of this file.');
    },
    onError: function(){ 
      alert('You must put something in the File Contents or there will be nothing to save!'); 
    },
    transparent: false,
    swf: 'media/downloadify.swf',
    downloadImage: 'images/download.png',
    width: 100,
    height: 30,
    transparent: true,
    append: false
  });
</script>

可以在这里找到:http: //pixelgraphics.us/downloadify/test.html

提前致谢

4

2 回答 2

1

You could just specify any id.

Downloadify.create( id_or_DOM_element, options );
于 2012-08-20T03:32:13.080 回答
0

最好的解决方案是“setlio”所说的您将按钮图像设置为透明图像并将您想要的文本或图片放在它下面

于 2014-12-08T11:50:30.597 回答