立即试一试 想知道界面是什么样的,并在不注册的情况下试用主要功能吗? 编辑DOCX 编辑XLSX 编辑PPTX 编辑PDF 立即创建表单 填写 PDF 表单 协作 演示预览 打开DOCX进行编辑 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开DOCX进行编辑</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "E7FAFC9C22A8", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "word", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 打开XLSX进行编辑 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开XLSX进行编辑</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "xlsx", "key": "E7FAFC9C22A8", "title": "Example Spreadsheet Title.xlsx", "url": "https://example.com/url-to-example-spreadsheet.xlsx" }, "documentType": "cell", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 打开PPTX进行编辑 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>打开PPTX进行编辑</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "pptx", "key": "E7FAFC9C22A8", "title": "Example Title.pptx", "url": "https://example.com/url-to-example-presentation.pptx" }, "documentType": "slide", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 编辑PDF × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>编辑PDF</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "pdf", "key": "9B9F6EFE8937", "title": "Example Document Title.pdf", "url": "https://example.com/url-to-example-document.pdf" }, "documentType": "pdf", "editorConfig": { "mode": "edit" }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 立即创建表单 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>立即创建表单</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "pdf", "key": "E7FAFC9C22A8", "title": "Example Form Template Title.pdf", "url": "https://example.com/url-to-example-document.pdf" }, "documentType": "pdf", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 填写 PDF 表单 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>填写 PDF 表单</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "pdf", "key": "9B5D4A67A9A9", "title": "Example Form Title.pdf", "url": "https://example.com/url-to-example-document.pdf", "permissions": { "edit": false, "fillForms": true } }, "documentType": "pdf", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "mode": "edit" }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 协作 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>协作</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "B143195F47A0", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "word", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "user": { "id": "78e1e841", "name": "John Smith" } }, "height": "100%", "width": "100%" }); </script> </body> </html> <!DOCTYPE html> <html style="height: 100%;"> <head> <title>协作</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "B143195F47A0", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "word", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "user": { "id": "F89d8069ba2b", "name": "Kate Cage" } }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 协作 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>协作</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "B143195F47A0", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "word", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "user": { "id": "F89d8069ba2b", "name": "Kate Cage" } }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 协作 × <!DOCTYPE html> <html style="height: 100%;"> <head> <title>协作</title> </head> <body style="height: 100%; margin: 0;"> <div id="placeholder" style="height: 100%"></div> <script type="text/javascript" src="https://documentserver/web-apps/apps/api/documents/api.js"></script> <script type="text/javascript"> window.docEditor = new DocsAPI.DocEditor("placeholder", { "document": { "fileType": "docx", "key": "B143195F47A0", "title": "Example Document Title.docx", "url": "https://example.com/url-to-example-document.docx" }, "documentType": "word", "editorConfig": { "callbackUrl": "https://example.com/url-to-callback.ashx", "user": { "id": "F89d8069ba2b", "name": "Kate Cage" } }, "height": "100%", "width": "100%" }); </script> </body> </html> 关闭 开始并选择工作地点 在 ONLYOFFICE 协作空间 在协作空间中安全地创建房间,邀请他人,从任何桌面或移动设备查看、编辑和协作处理各种文档。 立即创建免费账户开始 在您使用的平台 连接 ONLYOFFICE 文档,直接从您的应用程序编辑文档。 40 多个现成集成:Box、Moodle、Nextcloud、Odoo、Wordpress 等。 立即获取文档 在您创建的平台 将 ONLYOFFICE 文档集成到您的服务中,使用您的品牌为客户提供强大的文档编辑和创建功能。 了解更多 在您的电脑 使用 Windows、Linux 和 MacOS 的免费办公应用程序,离线编辑文档 立即下载 在您的移动设备 使用适用于 iOS 和 Android 设备的免费应用程序,在旅途中处理文档 立即安装 立即开始 将 ONLYOFFICE 文档集成至您的平台,以您品牌的名义为产品提供强大的文档编辑和生成能力。 免费试用 详细了解 ONLYOFFICE 文档开发者版 API 文档 了解如何为您的网络应用用户提供文档编辑和协作功能,以及如何设置、配置和集成 ONLYOFFICE 文档。 深入了解 API 自动化 API 可以在您的平台界面中放置任何控件,并从外部控制文档内容。 了解更多 文档生成器 使用 JavaScript SDK ,生成文档、表格、幻灯片、表单和PDF。 了解更多 还有其他疑问吗? 我们很乐意帮助您并讨论细节。 请联系我们: sales@onlyoffice.com,或安排时间进行电话沟通。 联系 安排时间