1、先下载KendoUI的插件包

2、然后在页面中引用Kendo的css和js

3、HTML中新建一个Div用来做Grid显示

4、然后调用KendUI Grid的函数加载Grid

5、后台返回一个{data:[]}这样的JSON数组

6、运行之后发现Grid是不带边框的

7、最后加上这句代码解决
$(function () {
setInterval(function () {
$(".k-grid-content table tr td").css("border-bottom", "1px solid #dee2e6");
}, 100);
});
