osclass 上的货币默认样式
currency default style on osclass
大家好,我的货币字段有问题!
当您只使用一种货币时,您会收到默认样式!看图!
当您使用两种或更多货币时,您会收到一个下拉框!
我想要的是一个盒子,里面装着货币,但是只读!
这是在 osclass 上的项目-post.php
这是代码!我需要如何更改它?
<?php ItemForm::currency_select(); ?>
如果您只有一种货币并且此货币是默认货币。
试试这个
<input name="currency" type="text" disabled="disabled" value="<?php echo osc_currency()?>">
然后在你的 css 中试试这个
input[type="text"]:disabled {
background: #dddddd;
}
查看此处的 osclass 助手:https://doc.osclass.org/Helpers
试试看告诉我。
大家好,我的货币字段有问题!
当您只使用一种货币时,您会收到默认样式!看图!
当您使用两种或更多货币时,您会收到一个下拉框!
我想要的是一个盒子,里面装着货币,但是只读!
这是在 osclass 上的项目-post.php 这是代码!我需要如何更改它?
<?php ItemForm::currency_select(); ?>
如果您只有一种货币并且此货币是默认货币。
试试这个
<input name="currency" type="text" disabled="disabled" value="<?php echo osc_currency()?>">
然后在你的 css 中试试这个
input[type="text"]:disabled {
background: #dddddd;
}
查看此处的 osclass 助手:https://doc.osclass.org/Helpers
试试看告诉我。