English 中文(简体)
在装入 jQuery ajax.get () 时无法显示的cfextextrea 控件
原标题:cftextarea controls not showing when loaded with jQuery ajax .get()

我有一个FLFEXTAREA字段, 它在自己观察时正常运行, 但是当它通过jQuery获取( ) 方法装入时, 控制器就不会出现 。

ie The cftextarea is on a product detail pane. ON the left side of the page is a list of products to edit. clicking on one on the

  • elements, loads the product detail pane via ajax and jquery (simulating an old school href)

    the content is loading in, but the toolbar does not appear. hitting the page on its own, the toolbar shows.

    这里是jquery( 工作精细)

    $("#productList li").click(function(event) {
    $.get(
         editProduct.cfm ,
        {id:$(this).attr( id )},
        function (response) {
            $( #productDetail ).html(response);
        }
    );
    });
    

    这是FLFSTEXTAREA呼叫:(未通过jquery/jax装入时, 工作正常)

    <cftextarea enabled="yes" name="nutrition" rows="5" cols="25" richText="yes"  toolbar="Basic" html="yes" >#DESCRIPTION#  </cftextarea>
    

    It d be nice to be able to use cftextarea on forms loaded in via ajax. is it possble?

  • 问题回答

    您只需要在包含您的 jQuery 功能的页面上包含 标记 。 @ {}





    相关问题
    ajax login using httpRequest?

    I am trying to develop my login script to give feedback to the user if the login is valid or not. Basically if it isn t correct a div box will show saying its wrong, if its correct it will show its ...

    Virtual Tour using sketch up, ajax, flash technologies

    I want to know if there are existing technology that make your 3d models in sketch into virtual tours, using either Ajax or Flash for web presentation. If there s none, which will be a good approach ...

    How can i update div continuously

    I have asp.net application where i have a div which showing the value from other site. The value of that site is changing continuously. I want that my div will automatically update in some interval ...

    热门标签