मैं का उपयोग कर आदेश एक शो पूर्वावलोकन स्क्रिप्ट में यह फ़ीड करने के लिए करने में महत्वपूर्ण पर एक TinyMCE पाठ क्षेत्रप्राप्त मूल्य
<textarea id="thetextarea"></textarea>
का मान प्राप्त करना चाहते हैं:
function showPreview(value) {
$("#preview-container").load("/material-preview.php", {s:value});
}
$('thetextarea').live("keyup",function (e) {
var material = this.value;
showPreview(material);
return false;
});
यदि मैं textarea id thetextarea
चुनने का प्रयास करता हूं तो यह काम नहीं करता है (काम करता है अगर मैं इसे टिनिमस-फ़ील्ड नहीं बनाता)।
मैं देख रहा हूँ पाठ, जब पाठ क्षेत्र, TinyMCE-परिवर्तित है में है कि:
<body id="tinymce" class="mceContentBody"></body>
लेकिन यह, या तो काम नहीं करता है (और न ही $('#tinymce')
करता है)
$('mceContentBody').live("keyup",function (e) {
var material = this.value;
showPreview(material);
return false;
});
एचटीएमएल कोड (फ़ायरबग से) tinyMCE के बाद अनुरोध किया गया है
<textarea id="material-input" class="mceEditor text" style="width: 310px ! important; height: 250px ! important; display: none;" name="material" aria-hidden="true"></textarea>
<span id="material-input_parent" class="mceEditor defaultSkin" role="application" aria-labelledby="material-input_voice">
<span id="material-input_voice" class="mceVoiceLabel" style="display:none;">Rich Text Area</span>
<table id="material-input_tbl" class="mceLayout" cellspacing="0" cellpadding="0" role="presentation" style="width: 310px; height: 250px;">
<tbody>
<tr class="mceFirst" role="presentation">
<tr>
<td class="mceIframeContainer mceFirst mceLast">
<iframe id="material-input_ifr" frameborder="0" src="javascript:""" allowtransparency="true" title="Rich Text Area. Press ALT F10 for toolbar. Press ALT 0 for help." style="width: 100%; height: 206px;">
<html>
<head xmlns="http://www.w3.org/1999/xhtml">
<body id="tinymce" class="mceContentBody " contenteditable="true" spellcheck="false" dir="ltr">
<!-- the text inside tinymce textarea -->
</body>
</iframe>
</td>
</tr>
<tr class="mceLast">
</tbody>
</table>
</span>
http://stackoverflow.com/questions/1024712/this-keyup-not-responding-when-focused-on-tinymce – Joseph