小编J D*_*J D的帖子

Garamond真的是一个网络安全字体吗?

Garamond真的是网络安全吗?我应该继续使用吗?我知道它不存在于XP(格鲁吉亚是后备),但是,其他操作系统呢?它存在于mac,新窗口和Linux中吗?

我知道我可以简单地做@ font-face,但是,如果我嵌入它,它在Google Chrome中看起来很可怕.

编辑

好的,如果我做了

@import url(http://fonts.googleapis.com/css?family=EB+Garamond);
html{font-family: Garamond, EB Garamond, Georgia, serif;}
Run Code Online (Sandbox Code Playgroud)

请问,通过这种方式,网络浏览器将首先检查是否安装了Garamond,如果没有,加载将加载网络字体EB Garamond,或者这不会发生?

css typography font-face

17
推荐指数
2
解决办法
4万
查看次数

在事件委托中传递jQuery对象

// Snippet 1
$(document).on("keyup blur", "#selector_1_id", function() {
    // DO SOMETHING
});

$(document).on("keyup blur", "#selector_2_id", function() {
    // DO SOMETHING
});


// Snippet 2
var selector_1_id = $("input[name=selector_1_id]");
var selector_2_id = $("input[name=selector_2_id]");

$(document).on("keyup blur", selector_1_id, function() {
    // DO SOMETHING
});

$(document).on("keyup blur", selector_2_id, function() {
    // DO SOMETHING
});
Run Code Online (Sandbox Code Playgroud)

为什么这些片段的行为似乎有所不同?虽然第一个实际上似乎是理想的,但是keyup和blur实际应用于keyup和blur事件上的选择器,而另一个似乎无法正常工作,它的行为类似于片段始终保持运行.

我正在使用JavaScript在实时网站上启用和禁用输入类型.

javascript jquery

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

最好的PHP库/类来读取Excel文件

我正在寻找一个支持接受excel文件(如.xls或.xlsx)的php库,然后使用某种功能来创建一个填充了每列值的数组.(单独的数组).

我知道可能没有读取使用解决方案因此我考虑编程它.但是我想知道哪个库最好用?

我遇到的少数人是

https://github.com/PHPOffice/PHPExcel

http://sourceforge.net/projects/phpexcelreader/

https://github.com/PHPOffice/PHPExcel

等等...

我不知道哪一个是最好的,虽然codeplex似乎功能最强大,但我不想使用太重的PHP库,然后最终不会使用90%的代码.

此外,该网站在CodeIgniter上.不确定它是否会改变任何东西.

php excel codeigniter

4
推荐指数
1
解决办法
2万
查看次数

回调和AngularJS(ng-click)

我有一个按钮就好

<div class="button" ng-repeat="event in events" 
    ng-click="selectEvent($index, event, generate)">
 Content
</div>
Run Code Online (Sandbox Code Playgroud)

其中generate应该是回调函数,但由于某种原因,它在调用时是未定义的.

就像有人点击按钮一样,我明白了 TypeError: undefined is not a function.我的selectEvent()代码看起来像

$scope.selectEvent = function ($index, event, callback) {
    // Do some stuff with $index and event

    console.log(callback); // This is undefined
    callback($scope, $http);
};
Run Code Online (Sandbox Code Playgroud)

和函数generate()在JS文件中的某个地方定义.

javascript angularjs

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

数组到对象的数组

我有一个类似的数组

var myArray = [
  [ '12345678912312', '982322' ],
  [ '98789213123123', '443434' ],
  [ '34534565465645', '387423' ],
  [ '67898798799299', '345334' ],
  [ '09324242342342', '234232' ],
]; 
Run Code Online (Sandbox Code Playgroud)

我想转换成一个对象数组,如:

var myObject = [
  {
    id: '12345678912312',
    num: '982322',
    hour: new Date.getHours(),
  },
  {
    id: '98789213123123',
    num: '443434',
    hour: new Date.getHours(),
  },
  {
    id: '34534565465645',
    num: '387423',
    hour: new Date.getHours(),
  },
  {
    id: '67898798799299',
    num: '345334',
    hour: new Date.getHours(),
  },
  {
    id: '09324242342342',
    num: '234232',
    hour: new Date.getHours(),
  },
];
Run Code Online (Sandbox Code Playgroud)

我目前正在使用Underscore,并想知道如何(以及如果)我可以使用_.object和/或 …

javascript arrays underscore.js

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