小编Nik*_*iya的帖子

为什么在将Firefox更新到版本50后删除了Firebug?

将Firefox更新到版本50.0后,我的Firebug会打开默认的开发人员工具.最初的Firebug不再起作用了.

我一直更喜欢Firebug作为我的默认调试工具.我想在Firefox 50中重新使用原始的Firebug.我该怎么做?

firefox firebug

12
推荐指数
2
解决办法
9278
查看次数

typeahead.js没有返回所有结果

我很难找到typeahead.js来返回/渲染我页面上的所有结果.这是我的代码:

var places = new Bloodhound({
    datumTokenizer: Bloodhound.tokenizers.whitespace,
    queryTokenizer: Bloodhound.tokenizers.whitespace,
    remote: {
        url: '/api/place/?country={{ country.id }}&name=%QUERY'
        , transform: function (data) {
            return data.response;
        }
        , wildcard: '%QUERY'
    }
});

var selected = false;
$('.typeahead-place').typeahead({
    hint: true,
    highlight: true,
    minLength: 2
},
{
    name: 'places',
    displayKey: function (obj) {

        if (obj.url != null && obj.url.length && (obj.street == null || obj.street.length == 0)) {
            return obj.name + " (Online store)";
        }

        return obj.name + " (" + obj.street + ", " …
Run Code Online (Sandbox Code Playgroud)

jquery jquery-plugins typeahead.js

5
推荐指数
2
解决办法
4209
查看次数

按下时如何删除按钮边框

嗨,我在点击我使用边框时有删除按钮边框的问题:无但不起作用我将边框半径放到我的按钮,但是当我点击时,方框中出现的边框如何删除?

这是我的形象在此先感谢..

这是我的CSS

.putadditionalitem{
    width:49%;
    height:100%;
    border-radius:50px;
    font-size:25px;
    font-weight:bold;
    font-family:Poplar Std;
    color:#fff;
    background: #05f11b;
    background-image: -webkit-linear-gradient(top, #05f11b, #0bbb1c);
    background-image: -moz-linear-gradient(top, #05f11b, #0bbb1c);
    background-image: -ms-linear-gradient(top, #05f11b, #0bbb1c);
    background-image: -o-linear-gradient(top, #05f11b, #0bbb1c);
    background-image: linear-gradient(to bottom, #05f11b, #0bbb1c); 
    margin-bottom:5px;
}
Run Code Online (Sandbox Code Playgroud)

在此输入图像描述

css jquery

1
推荐指数
1
解决办法
148
查看次数

标签 统计

jquery ×2

css ×1

firebug ×1

firefox ×1

jquery-plugins ×1

typeahead.js ×1