3

我正在使用 FreeTextBox:

<FTB:FreeTextBox ID="txtFreeTextBox" RemoveServerNameFromUrls="false" ToolbarLayout="ParagraphMenu,FontFacesMenu,FontSizesMenu,FontForeColorsMenu|Bold,Italic,Underline,Strikethrough;Superscript,Subscript,RemoveFormat|JustifyLeft,JustifyRight,JustifyCenter,JustifyFull;BulletedList,NumberedList,Indent,Outdent;CreateLink,Unlink,InsertImageFromGallery,InsertRule,InsertTable|Cut,Copy,Paste;Undo,Redo,Print" runat="Server" Width="100%" BackColor="239,239,240"ImageGalleryUrl="../../ftb.imagegallery.aspx?rif=Public/RootImages/&cif=Public/RootImages/">
</FTB:FreeTextBox>

问题是当我粘贴到它时,它会粘贴两次。有什么可以解决的吗?

4

1 回答 1

3

我在使用浏览器模式设置为 Internet Explorer 9 的 IE9 时遇到了这个问题(它在 IE9 Comp View 中正常工作)。我找到的解决方法是覆盖我页面 html 中的默认 CancelEvent 函数。我在结束体标签的正上方添加了这个:

<script type="text/javascript">
    FTB_FreeTextBox.prototype.CancelEvent = function (ev) {
        try{
            ev.preventDefault();
            ev.stopPropagation();
        }
        catch (e) {
            if (FTB_Browser.isIE) {
                ev.cancelBubble = true;
                ev.returnValue = false;
            }
        }
    };
</script>

希望它也适合你!

于 2012-09-21T16:08:59.397 回答