15

我正在尝试让编辑器到目前为止一切正常,但现在我需要制作一个处理程序,它可以检测 div 中所做的任何更改或 div 中编辑的任何内容

<?php $row="testing content" ?>
<!-- my editor section-->
<div id="editor">
    <div id="options">
        <span><a id="iimg">Insert Image from gallery</a></span>
        <span>Upload image to gallery</span>
        <span><a id="iheading">Heading</a></span>
    </div>
    <div id="product_descriptioncontent" contenteditable="true"><?php echo $row; ?>
    </div><!-- viewable editor -->
    <input type="hidden" name="textareacontent" value="" id="textareacontent" >
    <!-- hidden field to submit values -->
</div>
<!-- end of editor section -->
<div id="imc"></div> <!-- image gallery loading section -->

<script>
$(document).ready(function(){

    $('#iheading').click(function(){
    $('#product_descriptioncontent').append('<h1>Heading</h1>');
    });

    $('#iimg').click(function(){
        $('#imc').load('imagegallery.php',function(){
        $('#gallery img').on('click',function(){
            $('#product_descriptioncontent').append('<img  src="http://localhost/sites/site_pics/otherpic/1.png"><br>&nbsp;');
    });
    });
    });
    $('#product_descriptioncontent').change(function(){
    alert("pppp");// how to capture this event
    });
});
</script>

我在 jsfiddle http://jsfiddle.net/bipin000/UJvxM/1/上放置了一些代码, 感谢您的宝贵时间

4

3 回答 3

6

尝试为DOMCharacterDataModified添加处理程序。可能是更清洁的解决方案。

于 2012-04-26T07:34:48.997 回答
4

你喜欢吗?http://jsfiddle.net/Ralt/hyPQC/

document.getElementById( 't' ).onkeypress = function( e ) {
    var evt = e || window.event
    alert( String.fromCharCode( evt.which ) )
}​

它不是在等待一个change事件,它有点毫无意义。

相反,它正在监听onkeypress事件。每次用户更改此 div 的内容(通过向其添加字符)时,都会触发该事件。

您还可以查看如何点击角色(使用String.fromCharCode( evt.which ))。

PS:针对您的特定情况的完整 jQuery 解决方案将是:

$( '#product_descriptioncontent' ).on( 'keypress', function() {
    $( '#your-hidden-input' ).val( $( this ).text() )
    // Or
    $( '#your-hidden-div' ).text( $( this ).text() )
} )
于 2012-04-26T07:20:24.253 回答
1

您可以将自定义事件绑定到 div 并在更改时触发该事件

Stack Snippets 和jsFiddle中的演示:

$(function() {

  $('#wrapper').bind("contentchange", function() {
    console.log("Captured content change event"); 
  });

  $("#btn").click(function() {
    $('#wrapper').html("new value").trigger("contentchange");
  });
  
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script>

<div id="wrapper"></div>
<input type="button" id="btn" value="click here">

于 2012-04-26T06:41:12.563 回答