0

这是我的代码:

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="kendo_UI.WebForm1" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
    <link href="~/Styles/kendo/kendo.common.min.css" rel="stylesheet" />
    <link href="~/Styles/kendo/kendo.default.min.css" rel="stylesheet" />
    <script type="text/javascript" src="~/Scripts/jquery-1.9.1.min.js"></script>
    <script type="text/javascript" src="~/Scripts/kendo/kendo.all.min.js"></script>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <textarea id="editor" rows="10" cols="30"> </textarea>
        <script type="text/javascript">
            $(document).ready(function () {
                $("#editor").kendoEditor();
            });
        </script>
    </div>
    </form>
</body>
</html>

但是 textarea 出现时没有 kendoEditor :-(

怎么了?

谢谢!

没有更多细节;-(

4

1 回答 1

0

Kendo UI 不适用于 jQuery 1.9.x。您需要包含 jQuery 1.8.2。更多信息可以在文档中找到。

于 2013-02-11T19:03:04.207 回答