0
即時新聞,要使用該包,但不知道如何將其添加到我的asp.net mvc項目,以提高<input>
的外觀。 只需從這裏下載軟件包: http://markusslima.github.io/bootstrap-filestyle/ 現在是什麼?謝謝。如何在Visual Stuio中安裝Bootstrap Filestyle包?
即時新聞,要使用該包,但不知道如何將其添加到我的asp.net mvc項目,以提高<input>
的外觀。 只需從這裏下載軟件包: http://markusslima.github.io/bootstrap-filestyle/ 現在是什麼?謝謝。如何在Visual Stuio中安裝Bootstrap Filestyle包?
首先在下載軟件包後,在項目中添加源文件。
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>
希望這會有所幫助!
我只需要整個包中的兩個文件? –
是的,這應該足以開始。 – neophyte
thx,在其上工作,不要添加bootstrap-filestyle.js cdn? –