html5搜索输入不能与bootstrap一起使用

时间:2012-12-19 16:33:23

标签: html5 twitter-bootstrap

我已经测试了input[type="search"],并且在应用了引导程序样式时它没有显示清晰的(x)图标。

5 个答案:

答案 0 :(得分:51)

input[type="search"] {
 -webkit-box-sizing: content-box;
 -moz-box-sizing: content-box;
 box-sizing: content-box;
 -webkit-appearance: searchfield;
}

input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: searchfield-cancel-button;
}

适用于我的Chrome(在我的Mac上,但不适用于我的iPhone ...)

答案 1 :(得分:6)

与您相关的问题已经发布在他们的github中 https://github.com/twbs/bootstrap/issues/5624

答案 2 :(得分:1)

为了在所有设备上拥有相同的用户体验,我最终写了一个Angular指令,我把它放在Bootstrap'input-group-btn上。

角度视图HTML

<div class="input-group">
    <input type="search" id="listItemSearch" class="form-control"
        placeholder="Search text..." 
        title="Search" aria-label="Search"
        data-ng-model-options="{'debounce':1500, 'updateOn':'blur default'}"
        data-ng-model="vm.filters.listItemSearchText"/>
    <span class="input-group-btn">
        <button type="button" class="btn btn-default" 
            data-ng-disabled="!vm.filters.listItemSearchText" 
            aria-describedby="listItemSearch" 
            data-clear-search-by-aria="#listItemSearch">
            <span class="glyphicon glyphicon-remove" aria-hidden="true"></span>
        </button>
    </span>
    <span class="input-group-addon">
        <span>{{vm.models.listSearchResults.length}}</span>
        <span>/</span>
        <span>{{vm.data.list.length}}</span>
    </span>
</div>

Angular指令JavaScript

.directive( 'clearSearchByAria', ['$parse', function clearSearchByAria( $parse )
{
    return(
    {
        'restrict':'A',
        'link':function clearSearchByAria_link( scope, jqElem, ngAttr )
        {
            jqElem.on( 'click', function( $event )
            {
                var $clickedElem = angular.element($event.currentTarget);
                var $searchInput;

                // Specified by selector.
                if( !!ngAttr.clearSearchByAria )
                {
                    var $specifiedElem = angular.element(ngAttr.clearSearchByAria)
                    if( $specifiedElem.length == 1 )
                    {$searchInput = $specifiedElem;}
                }
                else
                {
                    var $describedElem = $clickedElem.find( '[aria-describedby]' ).addBack( '[aria-describedby]' );
                    // Specified by 'aria-describedby'.
                    if( $describedElem.length == 1 )
                    {$searchInput = angular.element(''.concat( '#', $describedElem.attr('aria-describedby')));}
                    else
                    {
                        throw( new ReferenceError( "'clear-search-by-aria' attributes requires either 1) to be empty and for the element (or a descendant) to have an 'aria-describedby' attribute referring to another element or 2) to specify an element selector (e.g. '#id') to another element." ));
                    }
                }

                if( !!$searchInput && $searchInput.length == 1 )
                {
                    var ng_model = $searchInput.data( 'ngModel' ) || $searchInput.attr( 'ng-model' );
                    if( !!ng_model )
                    {
                        var modelGetter = $parse( ng_model );
                        modelGetter.assign( scope, '' );
                        scope.$apply();
                    }
                    else
                    {
                        $searchInput.val( '' );
                    }
                }
            });
        },
    });
}])`

答案 3 :(得分:1)

将输入类型更改为“搜索”,而不是“文本”和-webkit-appearance:阻止而不是“无”

答案 4 :(得分:0)

如果您使用的是Web Kit,则问题可能与sk8terboi87发布的内容有关。

Bootstrap不支持为您设置Search类型输入的样式,因为在Web Kit中难以可靠地执行。

Bootstrap使用重置CSS来删除通常出现的交叉,你可以通过修改核心CSS来取回它,但这可能会在升级时引起问题。

如果它在其他浏览器中发生,虽然它可能是另一个问题。