word粘贴时,无法将图片粘贴上去?

发布于 2021-11-13 05:57:22 字数 17 浏览 757 评论 7

只有word中的文字内容会被粘贴!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(7

顾忌 2021-11-19 20:38:45

免费的好像没太好的解决方案,之前也在网上搜过,但是没找到。一般的做法都是通过控件来做的。

韬韬不绝 2021-11-19 20:17:07

这个控件是要付费的!

只为守护你 2021-11-19 20:17:00

只能在IE下使用……没有多大意义

情痴 2021-11-19 20:16:44

回复
正在研究其它平台的情况,估记马上要对Firefox,Chrome平台进行支持了。

只为守护你 2021-11-19 16:49:45

楼主试试这个控件:
http://www.cnblogs.com/xproer/archive/2011/04/08/2009500.html 1.FCKEditor2.x。从剪帖板,本地硬盘,第三方软件或Word文档中复制图片,然后点击编辑器工具栏中的”粘贴图片”按钮。图片将自动上传到Web服务器中.
FCKEditor2.x Demo 2.FCKEditor2.x编辑器。上传成功
 FCKEditor2.x编辑器-图片上传成功 3.CKEditor3.x编辑器-粘贴Word。
 CKEditor3.x-粘贴Word 4.CKEditor3.x-粘贴Excel
 CKEditor3.x-粘贴Excel 5.KindEditor3.x-粘贴图片
KindEditor3.x-粘贴Word 6.KindEditor4.x-粘贴Excel
KindEditor3.x-粘贴Excel Xproer.WordPaster整合代码如下:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<head>
    <title>WordPaster For FCKEditor-2.x</title>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <link type="text/css" rel="Stylesheet" href="WordPaster/css/WordPaster.css"/>
	<link type="text/css" rel="stylesheet" href="WordPaster/css/ui-lightness/jquery-ui-1.8.11.custom.css" />
    <script type="text/javascript" src="WordPaster/js/jquery.min.js" charset="utf-8"></script>
	<script type="text/javascript" src="WordPaster/js/jquery-ui-1.8.11.custom.min.js"></script>
	<script type="text/javascript" src="WordPaster/js/WordPaster.js" charset="utf-8"></script>
	<script type="text/javascript" src="fckeditor/fckeditor.js"></script>
</head>
<body>
	<!—textarea控件,FCK编辑器需要借助于这个控件创建-->
	<textarea id="txtContent" name="txtContent" cols="1" rows="1"></textarea>
	<!--创建FCKEditor控件-->
	<script language="javascript" type="text/javascript">
		var pasterMgr = new PasterManager();
		pasterMgr.Config["PostUrl"] = "http://localhost:10727/asp.net/upload.aspx";
		pasterMgr.Load();//加载控件

		var oFCKeditor = new FCKeditor('txtContent');
		oFCKeditor.BasePath = "fckeditor/";
		//oFCKeditor.ToolbarSet = "Basic";
		oFCKeditor.Height = 300;
		oFCKeditor.Value = '';
		oFCKeditor.ReplaceTextarea();//将上面的textarea替换成FCK编辑器,这样服务端可以通过Request.Form["txtContent"]取到数据

		//初始化编辑器
		function FCKeditor_OnComplete(editorInstance)
		{
			pasterMgr.Init(editorInstance);
		}
	</script>
</body>
</html>

资源下载:

CAB安装包

开发文档

ASP.NET-FCKEditor2.x示例

ASP.NET-CKEditor3.x示例

ASP.NET-KindEditor3.x示例

ASP.NET-KindEditor4.x示例

JSP-FCKEditor2.x示例

JSP-CKEditor3.x示例

JSP-KindEditor3.x示例

JSP-KindEditor4.x示例

PHP-FCKEditor2.x示例

PHP-CKEditor3.x示例

PHP-KindEditor3.x示例

PHP-KindEditor4.x示例

JSP-KindEditor4.x-ScreenCapture示例

奢华的一滴泪 2021-11-17 00:45:37

任何web编辑器都做不到……除非借助浏览器插件

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文