如何在visual stuio中安装Bootstrap Filestyle包?

时间:2017-01-26 22:28:40

标签: twitter-bootstrap visual-studio jquery-plugins

im newbe,想要使用该软件包,但不知道如何将其添加到我的asp.net mvc项目中,以改善<input>的外观。 只需从这里下载包: http://markusslima.github.io/bootstrap-filestyle/ 现在怎么办? THX。

1 个答案:

答案 0 :(得分:1)

首先下载软件包后,在项目中添加源文件。

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

你还应该在你的项目中添加引导程序CDN S -

<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>

希望这有帮助!