Laravel如何在Html外观中使用样式



在那里,我想使用Laravel集体HTML使用ID和样式在我的页面上导航,我该如何实现这一点。关键是用户单击链接"显示断奶详细信息",就会出现其他隐藏字段。下面是我的代码不起作用。

{{ Html::link('', 'Show Weaning details', array('id' => 'showWeaning','style' => 'display: none')) }}

使用 link_to

{{ Html::link_to('foo/bar', 'Show Weaning details', [ 'id' => 'showWeaning','style' => 'display: none'] ) }}

相关内容

  • 没有找到相关文章

最新更新