小编典典

JavaScript中的':'(冒号)有什么作用?

javascript

我正在学习JavaScript,并且在浏览jQuery库时发现:(冒号)被大量使用。这在JavaScript中有什么用?

// Return an array of filtered elements (r)
// and the modified expression string (t)
   return { r: r, t: t };

阅读 398

收藏
2020-04-25

共1个答案

小编典典

var o = {
    r: 'some value',
    t: 'some other value'
};

在功能上等同于

var o = new Object();
o.r = 'some value';
o.t = 'some other value';
2020-04-25