gpt4 book ai didi

php - 如何将 HTML 代码放入 Laravel 函数中?

转载 作者:行者123 更新时间:2023-11-28 12:39:53 25 4
gpt4 key购买 nike

我偶然发现了这个问题。我正在使用推特 Bootstrap 。我生成这样的表单元素:

{{ Form::button('Save', array('class'=>'btn btn-success')) }}

这没关系。但是当我想像这样在“保存”之前放置一个图标时,

{{ Form::button('<i class="icon-ok"></i> Save', array('class'=>;'btn btn-success')) }}

The <i> tag is not interpreted as it should be.
Is there any workaround on this? How do I do this?

Any Body Give Some Idea

Thanks in advance.

最佳答案

您可以使用 HTML::decode 方法包装您的按钮。

例子:

{{ HTML::decode(Form::button('<i class="icon-ok"></i> Save', array('class'=>;'btn btn-success'))) }}

HTML::decode 根据 laravel 的 api 将实体转换为 HTML 字符,可在此处找到: laravel api

关于php - 如何将 HTML 代码放入 Laravel 函数中?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26645664/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com