Jquery Text editor issue

a 夏天 提交于 2019-12-20 05:53:26

问题


The following the code of the page where I want to use Jquery Text Editor (jqte). However, after much trying nothing seems to be working. I have included the required files in the same folder as the aspx page.The Jquery reference is included on the masterpage.

<%@ Page Title="" Language="C#" MasterPageFile="~/MasterPage.master" AutoEventWireup="true" CodeFile="ArticleView.aspx.cs" Inherits="Articles_ArticleView" %>

<asp:Content ID="Content1" ContentPlaceHolderID="head" Runat="Server">
    <link href="jquery-te-1.3.6.css" rel="stylesheet" type="text/css" />
    <script src="jquery-te-1.3.6.min.js" type="text/javascript"></script>
</asp:Content>

<asp:Content ID="Content2" ContentPlaceHolderID="ContentPlaceHolder1" Runat="Server">
    <div></div>

    <div>
        <textarea class="jqte-test" name="textarea"></textarea>
        <div name="div" class="jqte-test"></div>
    </div>

    <div></div>

    <script>
        $('.jqte-test').jqte();
    </script>
</asp:Content>

来源:https://stackoverflow.com/questions/16624548/jquery-text-editor-issue

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!