211
$(document).ready(function() {
    // #login-box password field
    $('#password').attr('type', 'text');
    $('#password').val('Password');
});

这应该将#password输入字段(带有id="password")更改type password为普通文本字段,然后填写文本“密码”。

但是,它不起作用。为什么?

这是表格:

<form enctype="application/x-www-form-urlencoded" method="post" action="/auth/sign-in">
  <ol>
    <li>
      <div class="element">
        <input type="text" name="username" id="username" value="Prihlasovacie meno" class="input-text" />
      </div>
    </li>
    <li>
      <div class="element">
        <input type="password" name="password" id="password" value="" class="input-text" />
      </div>
    </li>
    <li class="button">
      <div class="button">
        <input type="submit" name="sign_in" id="sign_in" value="Prihlásiť" class="input-submit" />
      </div>
    </li>
  </ol>
</form>
4

29 回答 29

260

作为浏览器安全模型的一部分,很可能会阻止此操作。

编辑:确实,现在在 Safari 中进行测试,我得到了错误type property cannot be changed

编辑 2:这似乎是直接来自 jQuery 的错误。使用以下直接 DOM 代码就可以了:

var pass = document.createElement('input');
pass.type = 'password';
document.body.appendChild(pass);
pass.type = 'text';
pass.value = 'Password';

编辑 3:直接来自 jQuery 源,这似乎与 IE 相关(可能是错误或他们的安全模型的一部分,但 jQuery 不是特定的):

// We can't allow the type property to be changed (since it causes problems in IE)
if ( name == "type" && jQuery.nodeName( elem, "input" ) && elem.parentNode )
    throw "type property can't be changed";
于 2009-10-09T14:57:22.000 回答
84

一步解决

$('#password').get(0).type = 'text';
于 2011-10-03T12:05:39.650 回答
76

更容易......不需要所有的动态元素创建。只需创建两个单独的字段,一个是“真实”密码字段(type="password"),一个是“假”密码字段(type="text"),将假字段中的文本设置为浅灰色,然后将初始值设置为“密码”。然后用 jQuery 添加几行 Javascript,如下所示:

    <script type="text/javascript">

        function pwdFocus() {
            $('#fakepassword').hide();
            $('#password').show();
            $('#password').focus();
        }

        function pwdBlur() {
            if ($('#password').attr('value') == '') {
                $('#password').hide();
                $('#fakepassword').show();
            }
        }
    </script>

    <input style="color: #ccc" type="text" name="fakepassword" id="fakepassword" value="Password" onfocus="pwdFocus()" />
    <input style="display: none" type="password" name="password" id="password" value="" onblur="pwdBlur()" />

因此,当用户输入“假”密码字段时,它将被隐藏,真实字段将显示,焦点将移至真实字段。他们将永远无法在虚假字段中输入文本。

当用户离开真实密码字段时,脚本将查看它是否为空,如果是,则隐藏真实字段并显示假密码。

请注意不要在两个输入元素之间留有空格,因为 IE 将一个在另一个之后的位置(渲染空格),并且当用户输入/退出该字段时,该字段会出现移动。

于 2010-02-21T00:51:57.483 回答
48

如今,您可以使用

$("#password").prop("type", "text");

但是,当然,你真的应该这样做

<input type="password" placeholder="Password" />

除了 IE。还有一些占位符垫片可以模仿 IE 中的功能。

于 2013-02-15T20:12:17.657 回答
13

一个更跨浏览器的解决方案......我希望这个要点可以帮助那里的人。

此解决方案尝试设置type属性,如果失败,它只是创建一个新<input>元素,保留元素属性和事件处理程序。

changeTypeAttr.jsGitHub 要点):

/* x is the <input/> element
   type is the type you want to change it to.
   jQuery is required and assumed to be the "$" variable */
function changeType(x, type) {
    x = $(x);
    if(x.prop('type') == type)
        return x; //That was easy.
    try {
        return x.prop('type', type); //Stupid IE security will not allow this
    } catch(e) {
        //Try re-creating the element (yep... this sucks)
        //jQuery has no html() method for the element, so we have to put into a div first
        var html = $("<div>").append(x.clone()).html();
        var regex = /type=(\")?([^\"\s]+)(\")?/; //matches type=text or type="text"
        //If no match, we add the type attribute to the end; otherwise, we replace
        var tmp = $(html.match(regex) == null ?
            html.replace(">", ' type="' + type + '">') :
            html.replace(regex, 'type="' + type + '"') );
        //Copy data from old element
        tmp.data('type', x.data('type') );
        var events = x.data('events');
        var cb = function(events) {
            return function() {
                //Bind all prior events
                for(i in events)
                {
                    var y = events[i];
                    for(j in y)
                        tmp.bind(i, y[j].handler);
                }
            }
        }(events);
        x.replaceWith(tmp);
        setTimeout(cb, 10); //Wait a bit to call function
        return tmp;
    }
}
于 2011-10-03T16:56:33.567 回答
9

这对我有用。

$('#password').replaceWith($('#password').clone().attr('type', 'text'));
于 2012-06-27T01:58:56.970 回答
6

使用 jQuery 的终极方法:


将原始输入字段隐藏在屏幕上。

$("#Password").hide(); //Hide it first
var old_id = $("#Password").attr("id"); //Store ID of hidden input for later use
$("#Password").attr("id","Password_hidden"); //Change ID for hidden input

通过 JavaScript 即时创建新的输入字段。

var new_input = document.createElement("input");

将 ID 和值从隐藏的输入字段迁移到新的输入字段。

new_input.setAttribute("id", old_id); //Assign old hidden input ID to new input
new_input.setAttribute("type","text"); //Set proper type
new_input.value = $("#Password_hidden").val(); //Transfer the value to new input
$("#Password_hidden").after(new_input); //Add new input right behind the hidden input

要绕过 IE 上的错误type property cannot be changed,您可能会发现这很有用,如下所示:

将 click/focus/change 事件附加到新的输入元素,以便在隐藏输入上触发相同的事件。

$(new_input).click(function(){$("#Password_hidden").click();});
//Replicate above line for all other events like focus, change and so on...

旧的隐藏输入元素仍然在 DOM 中,因此将对新输入元素触发的事件做出反应。当 ID 被交换时,新的输入元素将像旧的一样,并响应对旧隐藏输入 ID 的任何函数调用,但看起来不同。

有点棘手,但工作!;-)

于 2010-01-18T06:22:35.047 回答
5

您是否尝试过使用 .prop()?

$("#password").prop('type','text');

http://api.jquery.com/prop/

于 2014-01-15T07:35:08.073 回答
4

我还没有在 IE 中测试过(因为我需要这个用于 iPad 网站) - 我无法更改 HTML 但我可以添加 JS 的表单:

document.getElementById('phonenumber').type = 'tel';

(老派 JS 在所有 jQuery 旁边都很丑!)

但是,http ://bugs.jquery.com/ticket/1957链接到 MSDN:“从 Microsoft Internet Explorer 5 开始,type 属性是读/写一次,但仅当使用 createElement 方法创建输入元素并且在将其添加到文档之前。” 所以也许你可以复制元素,更改类型,添加到 DOM 并删除旧元素?

于 2010-12-09T01:09:19.057 回答
4

这对我有用。

$('#newpassword_field').attr("type", 'text');
于 2017-12-08T05:52:07.627 回答
3

只需创建一个新字段即可绕过此安全问题:

var $oldPassword = $("#password");
var $newPassword = $("<input type='text' />")
                          .val($oldPassword.val())
                          .appendTo($oldPassword.parent());
$oldPassword.remove();
$newPassword.attr('id','password');
于 2009-10-09T15:00:37.487 回答
3

尝试在 Firefox 5 中执行此操作时,我收到了相同的错误消息。

我使用下面的代码解决了它:

<script type="text/javascript" language="JavaScript">

$(document).ready(function()
{
    var passfield = document.getElementById('password_field_id');
    passfield.type = 'text';
});

function focusCheckDefaultValue(field, type, defaultValue)
{
    if (field.value == defaultValue)
    {
        field.value = '';
    }
    if (type == 'pass')
    {
        field.type = 'password';
    }
}
function blurCheckDefaultValue(field, type, defaultValue)
{
    if (field.value == '')
    {
        field.value = defaultValue;
    }
    if (type == 'pass' && field.value == defaultValue)
    {
        field.type = 'text';
    }
    else if (type == 'pass' && field.value != defaultValue)
    {
        field.type = 'password';
    }
}

</script>

要使用它,只需将字段的 onFocus 和 onBlur 属性设置为如下所示:

<input type="text" value="Username" name="username" id="username" 
    onFocus="javascript:focusCheckDefaultValue(this, '', 'Username -OR- Email Address');"
    onBlur="javascript:blurCheckDefaultValue(this, '', 'Username -OR- Email Address');">

<input type="password" value="Password" name="pass" id="pass"
    onFocus="javascript:focusCheckDefaultValue(this, 'pass', 'Password');"
    onBlur="javascript:blurCheckDefaultValue(this, 'pass', 'Password');">

我也将它用于用户名字段,因此它会切换默认值。调用时只需将函数的第二个参数设置为''。

另外可能值得注意的是,我的密码字段的默认类型实际上是密码,以防万一用户没有启用 javascript 或出现问题,这样他们的密码仍然受到保护。

$(document).ready 函数是 jQuery,在文档完成加载时加载。然后将密码字段更改为文本字段。显然,您必须将“password_field_id”更改为密码字段的 ID。

随意使用和修改代码!

希望这可以帮助遇到我遇到同样问题的每个人:)

——CJ肯特

编辑:很好的解决方案,但不是绝对的。适用于 FF8 和 IE8,但不能完全适用于 Chrome(16.0.912.75 版)。页面加载时, Chrome 不会显示密码文本。此外 - FF 将在自动填充开启时显示您的密码。

于 2011-07-02T13:49:15.073 回答
3

适用于所有想要在所有浏览器中使用该功能的人的简单解决方案:

HTML

<input type="password" id="password">
<input type="text" id="passwordHide" style="display:none;">
<input type="checkbox" id="passwordSwitch" checked="checked">Hide password

jQuery

$("#passwordSwitch").change(function(){
    var p = $('#password');
    var h = $('#passwordHide');
    h.val(p.val());
    if($(this).attr('checked')=='checked'){
        h.hide();
        p.show();
    }else{
        p.hide();
        h.show();
    }
});
于 2012-02-25T21:38:14.760 回答
2

类型属性无法更改,您需要用文本输入替换或覆盖输入,并将值发送到提交时的密​​码输入。

于 2009-10-09T15:01:09.700 回答
2

我想您可以使用包含“密码”一词的背景图像并将其更改回.focus().

.blur() ----> 带有“密码”的图片

.focus()-----> 没有“密码”的图像

您也可以使用一些 CSS 和 jQuery 来实现。有一个文本字段正好显示在密码字段的顶部,hide() 在 focus() 上并专注于密码字段...

于 2011-10-28T02:01:02.343 回答
2

试试这个
演示在这里

$(document).delegate('input[type="text"]','click', function() {
    $(this).replaceWith('<input type="password" value="'+this.value+'" id="'+this.id+'">');
}); 
$(document).delegate('input[type="password"]','click', function() {
    $(this).replaceWith('<input type="text" value="'+this.value+'" id="'+this.id+'">');
}); 
于 2014-08-25T09:47:32.713 回答
2

这样做更容易:

document.querySelector('input[type=password]').setAttribute('type', 'text');

为了再次将其转回密码字段,(假设密码字段是文本类型的第二个输入标签):

document.querySelectorAll('input[type=text]')[1].setAttribute('type', 'password')
于 2014-10-21T12:17:23.520 回答
1

使用这个很容易

<input id="pw" onclick="document.getElementById('pw').type='password';
  document.getElementById('pw').value='';"
  name="password" type="text" value="Password" />
于 2011-03-11T10:29:27.617 回答
1
$('#pass').focus(function() { 
$('#pass').replaceWith("<input id='password' size='70' type='password' value='' name='password'>");
$('#password').focus();
});

<input id='pass' size='70' type='text' value='password' name='password'>
于 2011-09-03T14:57:40.517 回答
1

这是一个小片段,可让您更改type文档中的元素。

jquery.type.jsGitHub 要点):

var rtype = /^(?:button|input)$/i;

jQuery.attrHooks.type.set = function(elem, value) {
    // We can't allow the type property to be changed (since it causes problems in IE)
    if (rtype.test(elem.nodeName) && elem.parentNode) {
        // jQuery.error( "type property can't be changed" );

        // JB: Or ... can it!?
        var $el = $(elem);
        var insertionFn = 'after';
        var $insertionPoint = $el.prev();
        if (!$insertionPoint.length) {
            insertionFn = 'prepend';
            $insertionPoint = $el.parent();
        }

        $el.detach().attr('type', value);
        $insertionPoint[insertionFn]($el);
        return value;

    } else if (!jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input")) {
        // Setting the type on a radio button after the value resets the value in IE6-9
        // Reset value to it's default in case type is set after value
        // This is for element creation
        var val = elem.value;
        elem.setAttribute("type", value);
        if (val) {
            elem.value = val;
        }
        return value;
    }
}

它通过input从文档中删除 、 更改type然后将其放回原来的位置来解决问题。

请注意,此代码段仅针对 WebKit 浏览器进行了测试——不保证其他任何内容!

于 2011-09-04T02:50:45.917 回答
1
jQuery.fn.outerHTML = function() {
    return $(this).clone().wrap('<div>').parent().html();
};
$('input#password').replaceWith($('input.password').outerHTML().replace(/text/g,'password'));
于 2011-10-12T11:29:15.220 回答
1

这会成功的。尽管可以改进以忽略现在不相关的属性。

插入:

(function($){
  $.fn.changeType = function(type) {  
    return this.each(function(i, elm) {
        var newElm = $("<input type=\""+type+"\" />");
        for(var iAttr = 0; iAttr < elm.attributes.length; iAttr++) {
            var attribute = elm.attributes[iAttr].name;
            if(attribute === "type") {
                continue;
            }
            newElm.attr(attribute, elm.attributes[iAttr].value);
        }
        $(elm).replaceWith(newElm);
    });
  };
})(jQuery);

用法:

$(":submit").changeType("checkbox");

小提琴:

http://jsfiddle.net/joshcomley/yX23U/

于 2011-10-27T21:21:33.877 回答
1

简单地说:

this.type = 'password';

$("#password").click(function(){
    this.type = 'password';
});

这是假设您的输入字段事先设置为“文本”。

于 2012-02-13T17:26:34.390 回答
1

这是一种使用密码字段旁边的图像在看到密码(文本输入)和看不到密码(密码输入)之间切换的方法。我使用“睁眼”和“闭眼”图像,但您可以使用任何适合您的图像。它的工作方式是有两个输入/图像,并在单击图像时,将值从可见输入复制到隐藏输入,然后交换它们的可见性。与许多其他使用硬编码名称的答案不同,这个答案足够通用,可以在一个页面上多次使用它。如果 JavaScript 不可用,它也会优雅地降级。

这是其中两个在页面上的样子。在这个例子中,Password-A 通过点击它的眼睛来显示。

它看起来如何

$(document).ready(function() {
  $('img.eye').show();
  $('span.pnt').on('click', 'img', function() {
    var self = $(this);
    var myinp = self.prev();
    var myspan = self.parent();
    var mypnt = myspan.parent();
    var otspan = mypnt.children().not(myspan);
    var otinp = otspan.children().first();
    otinp.val(myinp.val());
    myspan.hide();
    otspan.show();
  });
});
img.eye {
  vertical-align: middle;
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<form>
<b>Password-A:</b>
<span class="pnt">
<span>
<input type="password" name="passa">
<img src="eye-open.png" class="eye" alt="O" style="display:none">
</span>
<span style="display:none">
<input type="text">
<img src="eye-closed.png" class="eye" alt="*">
</span>
</span>
</form>

<form>
<b>Password-B:</b>
<span class="pnt">
<span>             
<input type="password" name="passb">
<img src="eye-open.png" class="eye" alt="O" style="display:none">
</span> 
<span style="display:none">            
<input type="text">
<img src="eye-closed.png" class="eye" alt="*">
</span> 
</span>
</form>

于 2016-12-24T13:11:31.280 回答
1

我只是做了以下更改输入的类型:

$('#ID_of_element')[0].type = 'text';

它有效。

我需要这样做是因为我在 ASP NET Core 3.1 项目中使用了 jQuery UI datepickers,并且它们在基于 Chromium 的浏览器上无法正常工作(请参阅:https ://stackoverflow.com/a/61296225/7420301 )。

于 2020-04-18T21:12:01.037 回答
0

我喜欢这种方式来更改输入元素的类型:old_input.clone().... 这是一个示例。有一个复选框“id_select_multiple”。如果将其更改为“已选择”,则名称为“foo”的输入元素应更改为复选框。如果未选中,它们应该再次成为单选按钮。

  $(function() {
    $("#id_select_multiple").change(function() {
     var new_type='';
     if ($(this).is(":checked")){ // .val() is always "on"
          new_type='checkbox';
     } else {
         new_type="radio";
     }
     $('input[name="foo"]').each(function(index){
         var new_input = $(this).clone();
         new_input.attr("type", new_type);
         new_input.insertBefore($(this));
         $(this).remove();
     });
    }
  )});
于 2011-08-22T08:30:59.613 回答
0

这是一个 DOM 解决方案

myInput=document.getElementById("myinput");
oldHtml=myInput.outerHTML;
text=myInput.value;
newHtml=oldHtml.replace("password","text");
myInput.outerHTML=newHtml;
myInput=document.getElementById("myinput");
myInput.value=text;
于 2013-06-27T15:59:33.250 回答
0

我创建了一个 jQuery 扩展来在文本和密码之间切换。在 IE8 中工作(可能也是 6 和 7,但未经测试)并且不会失去您的价值或属性:

$.fn.togglePassword = function (showPass) {
    return this.each(function () {
        var $this = $(this);
        if ($this.attr('type') == 'text' || $this.attr('type') == 'password') {
            var clone = null;
            if((showPass == null && ($this.attr('type') == 'text')) || (showPass != null && !showPass)) {
                clone = $('<input type="password" />');
            }else if((showPass == null && ($this.attr('type') == 'password')) || (showPass != null && showPass)){
                clone = $('<input type="text" />');
            }
            $.each($this.prop("attributes"), function() {
                if(this.name != 'type') {
                    clone.attr(this.name, this.value);
                }
            });
            clone.val($this.val());
            $this.replaceWith(clone);
        }
    });
};

奇迹般有效。您可以简单地调用$('#element').togglePassword();以在两者之间切换或提供基于其他内容(如复选框)“强制”操作的选项:$('#element').togglePassword($checkbox.prop('checked'));

于 2014-03-12T02:20:46.137 回答
-1

只是所有 IE8 爱好者的另一个选择,它在较新的浏览器中完美运行。您可以只为文本着色以匹配输入的背景。如果您有一个字段,当您单击/聚焦该字段时,这会将颜色更改为黑色。我不会在公共站点上使用它,因为它会“混淆”大多数人,但我在只有一个人可以访问用户密码的 ADMIN 部分中使用它。

$('#MyPass').click(function() {
    $(this).css('color', '#000000');
});

-或者-

$('#MyPass').focus(function() {
    $(this).css('color', '#000000');
});

当您离开该字段时,这也需要将文本更改回白色。简单,简单,简单。

$("#MyPass").blur(function() {
    $(this).css('color', '#ffffff');
});

[ 另一个选项 ] 现在,如果您有多个要检查的字段,它们都具有相同的 ID,就像我使用它一样,请在要隐藏文本的字段中添加一个“pass”类。设置密码字段类型为“文本”。这样,只有具有“通过”类的字段将被更改。

<input type="text" class="pass" id="inp_2" value="snoogle"/>

$('[id^=inp_]').click(function() {
    if ($(this).hasClass("pass")) {
        $(this).css('color', '#000000');
    }
    // rest of code
});

这是第二部分。在您离开该字段后,这会将文本更改回白色。

$("[id^=inp_]").blur(function() {
    if ($(this).hasClass("pass")) {
        $(this).css('color', '#ffffff');
    }
    // rest of code
});
于 2018-04-19T04:45:00.377 回答