Underscore.js 工具函数 uniqueId 方法

返回 Underscore.js 工具函数


语法

_.uniqueId([prefix]) 

uniqueId() 为需要的客户端模型或 DOM 元素生成一个全局唯一的 id。如果 prefix 参数存在, id 将附加给它。

示例

var _ = require('underscore');

var uniqueId1 = _.uniqueId("text");

var uniqueId2 = _.uniqueId("text");

console.log(uniqueId1);
console.log(uniqueId2);

上面示例运行结果如下

Underscore.js  工具函数 uniqueId 方法运行结果


返回 Underscore.js 工具函数

查看笔记

扫码一下
查看教程更方便