我在我的asp.net项目中使用file uploader,我想在链接时启动此文件上传器,但默认情况下它使用带按钮的模板
<div class="qq-uploader span12">
<pre class="qq-upload-drop-area span12">
<span>{dragText}</span></pre>
<div class="qq-upload-button btn-success">Select Picture</div>
<ul class="qq-upload-list"></ul>
</div>
我用类qq-upload-button更改了div,但它不起作用,因为它需要这个类qq-upload-button, 点击链接时如何启动上传器?
答案 0 :(得分:1)
你应该使用CSS。请尝试将其添加到页面顶部的<head>
标记中:
<style type="text/css">
.qq-upload-button.btn-success {
background: none;
text-align: inherit;
width: inherit;
padding: 0;
color: black;
}
.qq-upload-button.btn-success:hover {
background: none;
text-decoration: underline;
color: blue;
cursor: pointer;
}
</style>
这将删除文件上传器添加的按钮样式,并将div设置为链接样式。