这应该很简单,我相信它适合你。我是 Rails 和 jQuery 新手,正在阅读用于 link_to 的 Rails API,它建议 html_options = {} 但我找不到示例。下面是我想要结束的 html,因为我想将 jquery 插件用于联系表单的模式对话框(如果有更简单的 Rails 方式,我很高兴听到):
<a href="http://mywebsite.com/contact-us.html" name="box" class="close-reveal-modal" data-reveal-id="myModal">Get more info.</a>
根据我对 api 的阅读,这是我最好的猜测,但它失败了:
<%= link_to 'Get more info', contact_us_path, :class => 'close-reveal-modal', html_options = {"data-reveal-id = 'myModal'"} %>
抽出 html_options 部分有效,但没有调用插件。我得到的是关于缺少关闭括号的错误,但这没有意义,因为一切都已关闭。我误解了 html_options 吗?,山姆