2012-04-03 92 views
0

我想我自己的風格應用於uploadify按鈕,這裏建議: Uploadify button: Style with CSS?Uploadify按鈕文本

的.js:

<div class="uploadWrapper"><input type="file" name="file_upload" id="file_upload" /></div> 

$("#file_upload").uploadify({ 
     'uploader': '/Scripts/uploadify/uploadify.swf', 
     'script': '/File/Upload', 
     'cancelImg': '/Scripts/uploadify/cancel.png', 
     'fileExt': '*.jpg;*.gif;*.png;*.bmp;*.htm;*.html;*.txt;*.zip', 
     'fileDesc': '*.jpg;*.gif;*.png;*.bmp;*.htm;*.html;*.txt;*.zip', 
     'auto': true, 
     'multi': true, 
     'sizeLimit': 1048576, 
     'buttonText': 'Upload Files', 
     'hideButton': true, 
     'wmode': 'transparent', 
     //more code here.... 

的.css:

.uploadWrapper object {background-color: #0099FF;} 

該作品好吧,我看到一個藍色的按鈕,我可以點擊打開文件對話框。但是,該按鈕上的文本是不可見/未設置的。我如何設置按鈕文字?

+0

你試圖改變按鈕,一個「A」的標籤,而不是在例如「輸入」什麼樣的? www.uploadify.com/documentation/options/buttontext/ – lgomezma 2012-04-03 18:41:36

+0

看起來uploadify網站已關閉......將在一段時間內嘗試使用。謝謝。 – GoldenUser 2012-04-03 19:01:13

回答

0

做這樣

<script type="text/javascript"> 
    <?php $timestamp = time();?> 
    $(function() { 
     $('#file_upload').uploadify({ 
      'formData'  : {     
       'timestamp' : '<?php echo $timestamp;?>', 
       'token'  : '<?php echo md5('unique_salt' .  $timestamp);?>', 
       'sernofa' : '<?php echo $likeString; ?>', 
       'width' : 300 
      }, 
      'queueSizeLimit' : 1, 
      'uploadLimit' : 1, 
      'buttonText' : 'Attach File', 
      'swf'  : 'uploadify/uploadify.swf', 
      'uploader' : 'uploadify/uploadify.php', 
      'onQueueComplete' : function(queueData) { 
      console.log(queueData); 
    } 


     }); 
    }); 
</script>