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()メソッドは、およびopal-jqueryとしてマップされます。Element#htmlElement#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