easyui报错jquery.easyui.min.js:4705 Uncaught TypeError: Cannot read property 'options' of undefined

easyui报错jquery.easyui.min.js:4705 Uncaught TypeError: Cannot read property 'options' of undefined_第1张图片

  • 错误代码
<div data-options="region:'center'" style="background:#eee;">
    <div id="tabs">div>
div>
$(function () {
    $("#accordion").accordion({
        fit: true
    });

    $('#tabs').tabs('add', {
        title: 'New Tab',
        content: 'Tab Body',
        closable: true,
    });

});

错误原因:使用组件前没初始化

  • 正确代码
$(function () {
    $("#accordion").accordion({
        fit: true
    });

    //初始化tabs
    $("#tabs").tabs({});
    
    //使用tabs
    $('#tabs').tabs('add', {
        title: 'New Tab',
        content: 'Tab Body',
        closable: true,
    });

});

你可能感兴趣的:(002前端-EasyUI)