2017-01-26 50 views

回答

1

首先在下載軟件包後,在項目中添加源文件。

bootstrap-filestyle/src/bootstrap-filestyle.js 
bootstrap-filestyle/src/bootstrap-filestyle.min.js 

你也應該有引導CDN S添加到您的poject--

<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"> 
     <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> 
     <script src="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script> 

After these two steps just follow this documentation to get started

爲出發點嘗試添加下面兩行代碼,看看它是如何工作的。

<input type="file" class="filestyle" data-input="false"> 
<script> 
$(":file").filestyle({input: false}); 
</script> 

希望這會有所幫助!

+0

我只需要整個包中的兩個文件? –

+0

是的,這應該足以開始。 – neophyte

+0

thx,在其上工作,不要添加bootstrap-filestyle.js cdn? –

相關問題