在文本框焦点上创建令牌

时间:2015-08-12 13:43:26

标签: javascript angularjs token jquery-tokeninput

我正在使用ng-repeat在文本框值中填充email-id。使用编辑图标我在文本框中添加了email-id,在文本框中重点关注我必须在文本框中为email-id创建令牌。 我必须找出令牌输入并创建令牌

$('.tagemail').parent().focusout(function() {
    $('.token-input').each(function(valindex) {
        if ($(this).val() != "") {
            var value = $(this).val();
            var id = $(this).attr("id");
            $('#' + id).val('');
            thisChild.tokenfield('createToken', value);
        }
    });
});

thisChild 的div会有所不同。

1 个答案:

答案 0 :(得分:4)

你的问题没有正确制定,但我认为这就是你正在寻找的:

https://code.google.com/p/crypto-js/

您可以创建各种令牌

或生成随机数:

    var rand = function() {
    return Math.random().toString(36).substr(2); // remove `0.`
};

var token = function() {
    return rand() + rand(); // to make it longer
};

token(); // "bnh5yzdirjinqaorq0ox1tf383nb3xr"

来源:Already Answered