Prototype 与 JavaScript 的 innerHTML 属性等效的方法是什么?
如何使用 Prototype 检索 HTML 内容?或者如何使用 RJS 获取 HTML 内容?
How can I retrieve HTML content using Prototype? Or how can I fetch HTML content using RJS?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
$('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;
尝试这样的事情:
Try something like this:
正如 Prototype 的文档中所见。使用 update() 方法。
http://prototypejs.org/doc/latest/dom/Element/update/
As seen on the documentation of Prototype. Use the update() method.
http://prototypejs.org/doc/latest/dom/Element/update/