文件表单/Form file

用诸如按钮等自定义的HTML结构替代默认的文件域表单。

用法

若要应用此组件,只需添加 .uk-form-file 类到一个包含着按钮和 <input type="file"> 元素的容器中。你也可以用其他任意元素替代按钮。注意 使用此组件需要额外添加 form-file.css 文件,在css/components文件夹中。

Example

你还可以使用
文本
.

Markup

<div class="uk-form-file">
    <button class="uk-button">...</button>
    <input type="file">
</div>

<div class="uk-form-file">Text<input type="file"></div>