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.
Rails 3 でパーシャルをレンダリングする際に、JavaScript を呼び出す必要があります。
_my_partial.html.erb
この部分がレンダリングされるたびに、javascript 関数を呼び出す必要があります。
でこれを試してください_my_partial.html.erb:
の場合html:
html
# partial code <script type="text/javascript"> your_function(); </script>
の場合haml:
haml
# partial code :javascript your_function(#{@variable});