gpt4 book ai didi

asp.net - FreeTextBox 复制粘贴的内容

转载 作者:行者123 更新时间:2023-12-02 03:48:00 27 4
gpt4 key购买 nike

我正在使用 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>

问题是,当我粘贴进去时,它粘贴了两次。有什么办法可以解决这个问题吗?

最佳答案

我在使用 IE9 并将浏览器模式设置为 Internet Explorer 9 时遇到了此问题(在 IE9 比较 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>

希望它也适合您!

关于asp.net - FreeTextBox 复制粘贴的内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12512203/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com