Prototype 与 JavaScript 的 innerHTML 属性等效的方法是什么?

发布于 2024-11-30 21:52:04 字数 55 浏览 3 评论 0原文

如何使用 Prototype 检索 HTML 内容?或者如何使用 RJS 获取 HTML 内容?

How can I retrieve HTML content using Prototype? Or how can I fetch HTML content using RJS?

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

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

发布评论

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

评论(3

挽你眉间 2024-12-07 21:52:04

$('fruit').innerHTML 将为您提供 id 为fruit的元素的inner-html。

通过 rjs 访问innerHTML,如下所示: page["fruit"]["innerHTML"]

上面的代码将翻译为: $("fruit").innerHTML;

$('fruit').innerHTML will give you the inner-html of an element with id fruit.

Access innerHTML through rjs like this: page["fruit"]["innerHTML"]

The above code will translate into: $("fruit").innerHTML;

桃扇骨 2024-12-07 21:52:04

尝试这样的事情:

$('div').pluck('innerHTML');

Try something like this:

$('div').pluck('innerHTML');
季末如歌 2024-12-07 21:52:04

正如 Prototype 的文档中所见。使用 update() 方法。
http://prototypejs.org/doc/latest/dom/Element/update/

$('you_element').update('some fruits here');

As seen on the documentation of Prototype. Use the update() method.
http://prototypejs.org/doc/latest/dom/Element/update/

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