如何将我自己的按钮连接到downloadify lib

时间:2012-08-20 03:26:04

标签: javascript

有谁知道如何将我自己的按钮连接到downloadify lib 而不是使用

<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

提前致谢

2 个答案:

答案 0 :(得分:1)

您可以指定任何ID。

Downloadify.create( id_or_DOM_element, options );

答案 1 :(得分:0)

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