KindEditor firebug错误提示isEmpty is not a function

发布于 2021-11-15 06:31:37 字数 871 浏览 807 评论 3

$(function(){
    var article_summary = KindEditor.create('textarea[id="article_summary"]',{
        cssPath : '../common/kindeditor-4.1.4/plugins/code/prettify.css',
        uploadJson : '../common/kindeditor-4.1.4/php/upload_json.php',
        fileManagerJson : '../common/kindeditor-4.1.4/php/file_manager_json.php',
        allowFileManager : true
    });
    prettyPrint();
});
$("#article_submit").click(function(){
    alert(article_summary.isEmpty());
});

article_summary.isEmpty();提示isEmpty is not a function

而且其它的html() text() 等都是同样问题

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

背叛残局 2021-11-18 23:50:47

呃。。谢谢 试试

拥有 2021-11-18 18:19:56

成了。。。 老大 这是啥问题啊、

复古式 2021-11-17 17:01:59

少年,你的article_summary变量在$(function(){...});外是不可见的啊!把article_summary的定义放到外面试试

var article_summary;
$(function(){
    article_summary = KindEditor.create('textarea[id="article_summary"]',{
        cssPath : '../common/kindeditor-4.1.4/plugins/code/prettify.css',
        uploadJson : '../common/kindeditor-4.1.4/php/upload_json.php',
        fileManagerJson : '../common/kindeditor-4.1.4/php/file_manager_json.php',
        allowFileManager : true
    });
    prettyPrint();
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文