如何在asp.net中通过jquery验证tinymce

发布于 2024-11-06 01:27:41 字数 222 浏览 1 评论 0原文

我有许多 ascx 控制文件,其中我使用 tinymce 编辑器,并且在不同的不同 btn 单击上调用一个母版页中的所有 ascx 文件。

现在我想,当我单击按钮 A 时,我在tinymce编辑器中输入了一些内容,然后突然单击按钮 B,然后在 btn 上打开的页面单击 A 必须询问您是否需要在 btn 上保存此文本点击B。

我怎样才能在jquery的帮助下做到这一点?如果还有其他方法,请告诉我。

I have many ascx control files in which I am using the tinymce editor and I am calling all ascx file in one master page on different different btn click.

Now I want, when I click on button A, and I have typed something into the tinymce editor and suddenly I click on button B then the page which is opened on btn click A must ask whether you need to save this text or not on btn click B.

How can I do it with the help of jquery? If there is some other way then please let me know.

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

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

发布评论

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

评论(2

烟燃烟灭 2024-11-13 01:27:41

我希望您在这里参考我的答案...

将 jQuery Validate 插件与 TinyMCE 编辑器结合使用

它将解决在将编辑器客户端发送到服务器之前验证编辑器客户端的问题。

I would like you to refer to my answer here....

Using the jQuery Validate plugin with the TinyMCE editor

It will solve your issue of validating the editor client side before sending it to server.

走过海棠暮 2024-11-13 01:27:41

当用户开始在tinymce编辑器中编辑内容时,将标志isContentChanged设置为true。将事件处理程序添加到按钮 B。在事件处理程序中,您可以检查 isContentChanged 标志,如果该标志为 true,则显示用户正在丢失未保存信息的警报。您可以使用基本的 JS 或 Jquery 来执行此操作。

When the user starts editing the content in tinymce editor set a flag isContentChanged to true. Add an event handler to the Button B. In the event handler, you can check for the isContentChanged flag and show an alert that the user is losing unsaved information, if the flag is true. You can use basic JS or Jquery to do this.

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