- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有 Twig 模板:show.html.twig。
其中有一个 Bootstrap 表单组中的删除按钮。我想像表单组中的其他按钮一样设置按钮的样式,但它不起作用,这是我的代码:
<div class="btn-group btn-group-sm" role="group" style="margin-bottom: 20px;">
<a href="{{ path('secure_mail') }}" type="button" class="btn btn-default"><i class="fa fa-envelope"></i> Back</a>
{{ form_widget(delete_form.submit, { 'label': 'Delete' }, { 'attr': {'class': 'btn btn-default', 'type' => 'button'} }) }}
</div>
难道不能设计这个按钮吗?
最佳答案
改变:
{{ form_widget(delete_form.submit, { 'label': 'Delete' }, { 'attr': {'class': 'btn btn-default', 'type' => 'button'} }) }}
收件人:
{{ form_widget(delete_form.submit,{ 'label': 'Delete' }, { 'attr': {'class': 'myOwnClassSelectorsHere', 'type': 'button'} }) }}
在 attr
声明中使用您的 CSS 选择器,它将使用您应用到该类的任何样式。
定义 { 'attr': {'class': '...', 'type' : 'button'}
的地方,就是应用样式的方式。它使用 btn btn-default
作为 Twitter Bootstrap 的样式选择器。
您没有看到任何更改的原因是您声明了 =>
而不是 :
。
对于标签,尝试:
{{ form_widget(delete_form.submit,{ 'label': 'Delete' }, { 'attr': {'class': 'myOwnClassSelectorsHere', 'type': 'button'} }) }}
关于php - Symfony2/ Twig /Bootstrap : How to customize DeleteForm Button,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27131507/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!