如何在asp.net中通过jquery验证tinymce
我有许多 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我希望您在这里参考我的答案...
将 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.
当用户开始在tinymce编辑器中编辑内容时,将标志
isContentChanged
设置为true
。将事件处理程序添加到按钮 B。在事件处理程序中,您可以检查isContentChanged
标志,如果该标志为 true,则显示用户正在丢失未保存信息的警报。您可以使用基本的 JS 或 Jquery 来执行此操作。When the user starts editing the content in tinymce editor set a flag
isContentChanged
totrue
. Add an event handler to the Button B. In the event handler, you can check for theisContentChanged
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.