2

我们的客户需要为 jQuery-mobile 定制设计单选按钮样式。实际上它与水平模式下默认的 jQuery-mobile 单选按钮设计非常相似。例如 jQuery-mobile 将水平单选按钮定义为

<fieldset data-role="controlgroup" data-type="horizontal">
    <legend>I like to buy and wear trendy must-haves</legend>
    <input type="radio" name="radio-choice" id="radio-choice-1" value="choice-1" checked="checked"  />
    <label for="radio-choice-1">1</label>

    <input type="radio" name="radio-choice" id="radio-choice-2" value="choice-2"  />
    <label for="radio-choice-2">2</label>

    <input type="radio" name="radio-choice" id="radio-choice-3" value="choice-3"  />
    <label for="radio-choice-3">3</label>

    <input type="radio" name="radio-choice" id="radio-choice-4" value="choice-4"  />
    <label for="radio-choice-4">4</label>

    <input type="radio" name="radio-choice" id="radio-choice-5" value="choice-5"  />
    <label for="radio-choice-5">5</label>
</fieldset>

此外,我们的客户希望在lablel. 例如下图自定义水平单选按钮

我想知道 jQuery-mobile 是否允许我们显示默认单选按钮?如果可以,你能举个例子吗?

还是我们需要自定义这个?

4

3 回答 3

4

解决方案

首先,它不能通过 jQM 配置来完成。这必须通过 jquery 手动创建(与任何其他 jQM 小部件一样,包括字段集)。

我为您创建了一个工作示例:http: //jsfiddle.net/Gajotres/779Kn/

您只需要再做一件事,我不想打扰自定义图像,所以我使用为我的另一个示例创建的图像:https ://stackoverflow.com/a/13634738/1848600

这是需要的javascript:

$(document).on('pagebeforeshow', '#index', function(){     
    $('<div>').addClass('checkBox').appendTo('fieldset div div.ui-radio label');
    $('input[type="radio"]').each(function(){        
        ($(this).is(':checked')) ? $(this).next().find(".checkBox").addClass('checked') : $(this).next().find(".checkBox").addClass('not-checked');
    });
    
    $(document).on('click', '.ui-radio', function(){      
        $('input[type="radio"]').each(function(){  
            $(this).next().find(".checkBox").addClass('not-checked').removeClass('checked');
        }); 
        
        if($(this).find('input[type="radio"]').is(':checked')){
           $(this).find('label div.checkBox').removeClass('checked').addClass('not-checked'); 
           $(this).find('input[type="radio"]').attr('checked' , false);
        } else {
           $(this).find('label div.checkBox').removeClass('not-checked').addClass('checked');             
           $(this).find('input[type="radio"]').attr('checked' , true);
        }        
    });  
});

这是CSS:

.checkBox{
    width: 18px;
    height: 18px;
    background: #d9d9d9;
    border-radius: 3px;  
    margin: 0 auto;
    margin-bottom: 5px;
}

.not-checked, .checked {
    background-image: url("http://www.fajrunt.org/icons-18-white.png");
    background-repeat: no-repeat;
}

.not-checked {
    background-position: -18px 0;       
    background-color:#d9d9d9;
}

.checked {
    background-position: -720px 0;    
    background-color:#6294bc;
}

如果你能等几个小时,我会更新一张图片,我不能从我现在的位置更新。

最后的笔记

如果您想了解更多关于如何自定义 jQuery Mobile 页面和小部件的信息,请查看这篇文章。它附带了许多工作示例,包括为什么 !important 对于 jQuery Mobile 是必需的。

于 2013-02-01T10:49:43.077 回答
2

无需 css 或 javascript;这是您使用哪些元素和类的问题,例如:

<div id="test_content" class="ui-content" data-role="main" data-theme="b">    
    <fieldset class="ui-controlgroup ui-corner-all">
      <div class="ui-grid-b ui-controlgroup-controls" style="width: 560px;">
        <div class="ui-block-a">
          <input name="invoicing_filter_type" id="invoicing_filter_tobeinvoiced"
            value="1|4" type="radio" data-mini="true" data-iconpos="bottom">
          <label for="invoicing_filter_tobeinvoiced">To be invoiced</label>
        </div>
        <div class="ui-block-b">
          <input name="invoicing_filter_type" id="invoicing_filter_pending" 
            value="9|5" type="radio" data-mini="true" data-iconpos="bottom">
          <label for="invoicing_filter_pending">Invoices pending</label>
        </div>
        <div class="ui-block-b">
          <input name="invoicing_filter_type" id="invoicing_filter_tobereleased" 
            value="9|6" type="radio" data-mini="true" data-iconpos="bottom">
          <label for="invoicing_filter_tobereleased">Invoices to be released</label>
        </div>
      </div>
     </fieldset>
</div>

请注意,此处不使用数据角色。对应的小提琴

于 2014-05-14T05:32:31.880 回答
0

这是你想要的

使用 CSS

.myclass2 {
    background-color: yellow;
    float: left;
    margin-top: 11px;
}
.myclass {
    background-color: yellow;
    float: left;
    left: 13px;
    margin-top: 26px;
    padding-left: 22px;
    position: relative;
    top: 10px;
}

JSFIDDLE

于 2013-02-01T10:15:20.083 回答