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.
是否有任何 Laravel4 Html() 函数或添加禁用链接的方法。当然我可以<a>直接创建标签,虽然我更喜欢保持一致。
<a>
IE:
{{ Html::link('javascript:;','Delete',array('id'=>"deletebt")) }}
您必须使用link_to,例如:
link_to('link', 'title', array('id' => 'MyId'));