我想编辑“pre”标签内的内容。在按钮上单击我想知道内容是否已更改。我怎么能使用“jquery”?
答案 0 :(得分:0)
您可以使用:DOMSubtreeModified
$('.change-text-button').on('click', function(){
$('.my-pre').text('Some other text');
});
$('.my-pre').bind("DOMSubtreeModified",function(){
console.log('changed');
});

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<button class="change-text-button">Change text</button>
<pre class="my-pre">Lorem ipsum dolor sit amet</pre>
&#13;