我想在模块配置页面中使用标准的magento配置字段类型。它适用于文本或图像。但是现在我想出了一个设置标签或链接的问题。
1)如何为链接字段设置href属性?
2)如何为任何字段设置其他html属性(class,style,rel等)?
我想通过使用system.xml实现这一目标,因此我不需要编写自定义模型来显示静态信息。
谢谢
答案 0 :(得分:2)
要添加类,请使用frontend_class:
<fields>
<field_name translate="label">
<frontend_class>class_name</frontend_class>
</field_name>
</fields>
您可以在该类上使用jQuery来自定义字段。