检测更改输入类型 - jQuery

时间:2017-03-06 15:10:06

标签: jquery input password-protection

我想检测用户是否已将某些输入的类型从<input type="password">更改为<input type="text">,或者将其再次放在<input type="password">上。

这个想法是阻止用户更改类型。这是我的想法,或者你有其他感兴趣的东西。

我的代码:

jQuery(('.input_class').attr('type').val()).live('change', function(){
        alert('the type is changed');
        jQuery('.input_class').prop('type', 'password');
});

0 个答案:

没有答案