我目前在项目中使用Kendo UI和Bootstrap,并且遇到一个问题,其中Kendo Autocomplete覆盖了bootstrap css类form-control
。无论如何,有什么方法可以阻止自动完成功能覆盖Bootstrap样式?
这是自动完成代码:
<script type="text/javascript">
$("#txtName").kendoAutoComplete({
dataSource: data,
filter: "startswith",
placeholder: "Select product..."
});
</script>
这是我使用form-control
的形式:
<form method="post" action="">
<div class="form-group">
<label for="txtName">Product name:</label>
<input class="form-control" id="txtName" type="text" placeholder="Name of the product"/>
</div>