0

我正在尝试将图像拖到 jquery 文本编辑器(jqte),然后在编辑器中调整它的大小。由于调整大小功能仅在 Firefox 中有效。所以我想在 mouseenter 上提供 W 和 H 文本框来改变大小。但是 mouseenter 不适用于 img 元素。

     <div class="jqte_editor" contenteditable="true"><pre style="font-family:consolas;">
      <br>
        &nbsp;&nbsp;&nbsp;&nbsp;
         <img style="border-left-width: 1px; border-left-style:   solid; border-left-color: rgb(255, 255, 255); border-bottom-width: 1px; border-bottom-style: solid; border-bottom-color: rgb(255, 255, 255);" src="http://localhost:65380/Articles/ArticleImageStore/cf82c9c8-3ea0-4c7f- 9272-7b2fd48a9eed/79825f3f-965f-4e34-ad45-3fa7430e6837.JPEG" width="64" height="64" id="img6">         
     </pre>
     <p><br></p>
     <pre style="font-family:consolas;">&nbsp;&nbsp;&nbsp;</pre>  <p></p>                         
     </div> 

jQuery代码片段

         $('.jqte_editor img').on('mouseenter', function() { 
             alert("hello");
             $(this).before("<div style='position:absolute'><input type='textbox'></input></div>"); 
         });
4

2 回答 2

0

您的代码运行良好:http: //jsfiddle.net/ANnH2/

如果您没有将代码包装在 .ready 函数中,请检查一次:

$(document).ready(function(){
    $('.jqte_editor img').on('mouseenter', function() {
        alert("hello");
        $(this).before("<div style='position:absolute'><input type='textbox'></input></div>"); 
    });

});
于 2013-07-11T16:39:27.187 回答
0

你的代码在这里工作

要么你没有包含 required jQuery library,这个链接显示了 jQuery 是如何工作的,或者你没有把事件绑定放在document.ready中。

添加 jQuery

<script src="http://code.jquery.com/jquery-latest.min.js" 
               type="text/javascript"></script>

document.ready 中的绑定事件

$(document).ready(function(){
    $('.jqte_editor img').on('mouseenter', function() { alert("hello"); $(this).before("<div style='position:absolute'><input type='textbox'></input></div>"); });
});
于 2013-07-11T16:36:44.800 回答