我是 JS 开发的新手。我在 html 文件中定义了一个类。
<div class="content">
<div id="splitter">
<div>Pane A</div>
<div>Pane B</div>
</div>
</div>
我想使用剑道分割器以 20:80 的比例分割屏幕。这是 JS 文件的代码:
var currViewCtx = viewEvt.view.viewCtx;
var contentView = currViewCtx.getViewContent().find(".content");
var Widget = CrudUtils.createFilter();
if (FilterWidget.Id != null) {
$(contentView).find("#splitter").kendoSplitter({/////Line x
orientation: "horizontal",
panes: [{ resizable: false, size: "20%", collapsible: false },
{ resizable: false, collapsible: false }]
});
}
代码不是从 Line x 运行的。任何人都可以帮我解决代码吗?