我想要隐藏上传文件'由于我使用自定义按钮上传文件,因此剑道上传按钮。
我已将关于剑道上传的选择文件的代码编写为,
function onSelect() {
$('.k-upload-selected').css("display", "none");
}
我也尝试了以下css,
.k-upload-selected{
display: none;
}
但上传按钮仍在那里......
答案 0 :(得分:2)
答案 1 :(得分:1)
表示隐藏:
$('.k-upload-selected').css('visibility', 'hidden');
完全删除
$('.k-upload-selected').remove();
答案 2 :(得分:0)
如果您使用Kendo for Angular,则需要将组件中的封装设置为 ViewEncapsulation.None 。
“'hour'h” -> “hour 9”
“ss''SSS” -> “45'876”
答案 3 :(得分:0)
您只需使用
<style>
.k-clear-selected, .k-upload-selected{
display: none !important;
}
</style>