使用 Javascript 更改 html 页面中的所有文本区域

发布于 2024-08-23 01:20:55 字数 366 浏览 3 评论 0原文

我正在 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 技术交流群。

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

发布评论

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

评论(1

往日 2024-08-30 01:20:55

您可以使用

document.getElementsByTagName("textarea")

返回所有

You can use

document.getElementsByTagName("textarea")

to return an array of all the <textarea/> elements. Then iterate over it and do with it as you will.

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