2011-07-02 63 views
1

如何在使用SWFUpload的瀏覽器中啓用Flash時隱藏「html上傳」部分?我查看了WordPress的源代碼,看看他們在做什麼。他們有一個設置參數SWFUpload的對象,看起來像這樣:如何在使用SWFUpload啓用Flash時隱藏html上傳?

custom_settings : { 
    degraded_element_id : "html-upload-ui", // id of the element displayed when swfupload is unavailable 
    swfupload_element_id : "flash-upload-ui" // id of the element displayed when swfupload is available 
    }, 

我已經把這些ID號的div元素。但我還沒有想出我應該做些什麼才能使其工作。

請以任何方式幫助我解決問題。

回答

0
<style type="text/css">#divname { display: none; } </style> 

顯示隱藏使元素隱藏,但它仍佔用空間。顯示都不會使元素不佔用空間,但它仍然在HTML代碼中,只是它沒有任何作用,就像它已被註釋掉一樣。

相關問題