使用 Javascript 更改 html 页面中的所有文本区域
我正在 Django 中创建一个项目,并使用 Django 管理页面和 TinyMCE。但我希望能够打开和关闭 TinyMCE,如下例所示:
http:// tinymce.moxiecode.com/examples/example_01.php
但由于管理页面是自动生成的,我想我需要覆盖我可以做的 base_site.html 模板。但我的问题是“有什么办法可以让我在 javascript 中拥有类似 -- if is textarea ..... -- 的东西吗?”
谢谢
I am creating a project in Django, and I am using the Django Admin pages along with TinyMCE. But I would like to be able to toggle TinyMCE on and off like in this example:
http://tinymce.moxiecode.com/examples/example_01.php
but since the admin page is generated automatically I imagine I need to overide the base_site.html template which I can do. But my question is "Is there any way I can have something like -- if is textarea ..... -- in javascript?"
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
返回所有
You can use
to return an array of all the <textarea/> elements. Then iterate over it and do with it as you will.