Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我已经阅读了我能找到的所有文档,但它有点参差不齐。有人可以告诉我如何在桥 opal-jquery中使用 jquery 的.html()方法吗?ruby -> jquery此外,对于我将来如何在文档稀少的 gem 中找出实现的方法的任何建议,肯定会受到赞赏。
.html()
ruby -> jquery
jQuery 的.html()方法 inopal-jquery被映射为Element#html和Element#html=。
opal-jquery
Element#html
Element#html=
后者肯定更像 Ruby,显然是用来设置 HTML 内容的。
为方便起见,您仍然可以#html同时用作 setter(带参数)或 getter(不带参数)。
#html
这是.html()别名为#html=:
#html=
https://github.com/opal/opal-jquery/blob/eab45e24ed1128721395d38d7d4b9e84c4427c00/opal/opal-jquery/element.rb#L78
这是#html定义的地方:
https://github.com/opal/opal-jquery/blob/eab45e24ed1128721395d38d7d4b9e84c4427c00/opal/opal-jquery/element.rb#L214-L222