Изменение типа <input>в IE с помощью JavaScript - PullRequest
9 голосов
/ 02 апреля 2010

Этот код ниже работает во всех веб-браузерах, кроме IE:

<input type="text" name="passwordLogin" value="Password" onfocus="if(this.value=='Password'){this.value=''; this.type='password'};" onblur="if(this.value==''){this.value='Password'; this.type='text'};" size="25" />

Как я могу это исправить для IE?

Я сделал некоторые изменения, но все равно есть ошибка.

Я хочу, чтобы это работало так, как здесь:

<input type="text" name="usernameLogin" value="Email" onfocus="if(this.value=='Email'){this.value=''};" onblur="if(this.value==''){this.value='Email'};" size="25" />

если я ничего не введу, это вернет значение.

Итак, я попробовал это:

<td colspan="2" id="passwordLoginTd">
     <input id="passwordLoginInput1" type="text" name="passwordLogin" value="Password" onfocus="passwordFocus()" size="25" />
     <input id="passwordLoginInput2" style="display: none;" type="password" name="passwordLogin" value="" onblur="passwordBlur()" size="25" />
    </td>
    <script type="text/javascript">
    //<![CDATA[

     passwordElement1 = document.getElementById('passwordLoginInput1');
     passwordElement2 = document.getElementById('passwordLoginInput2');

     function passwordFocus() {

      passwordElement1.style.display = "none";
      passwordElement2.style.display = "inline";
      passwordElement2.focus();

     }

     function passwordBlur() {

      if(passwordElement2.value=='') {

       passwordElement2.style.display = "none";
       passwordElement1.style.display = "inline";
       passwordElement1.focus();

      }

     }

    //]]>
    </script>

как видите, размытие не работает.

Наконец я получил его, мне нужно было удалить:

passwordElement1.focus();

Ответы [ 4 ]

12 голосов
/ 27 июня 2013

вы можете сделать это. Однако выполнение замены в externalhtml по существу повторно объявляет элемент, поэтому любой атрибут, явно не определенный в объявлении тега, будет забыт. Вот почему текстовое значение сначала сохраняется в переменной. В отличие от attr и prop jQuery, это работает во всех версиях IE. Я использовал реальный IE10 и IETester для 5.5–9.

Вот скрипка , код ниже:

HTML

<input id="myinput" type="password">
<input value="transform" id="transformButton" type="button">

JS

//attach a click handler to the button to make it transform 
//when clicked, via our transform() function below
document.getElementById('transformButton').addEventListener("click", transform);

//flag of whether or not it is a password field or text field
var isPassword = true;
//this function will toggle the input between being a password or a text input
function transform() {
    //copy the element itself, its html source, and value text to a variable
    var myInput = document.getElementById("myinput");
    var oldHtml = myInput.outerHTML;
    var text = myInput.value;
    if (isPassword)
    {
        //replace "password" with "text" in the html if it is a password field
        var newHtml = oldHtml.replace(/password/g, "text");
    }
    else
    {
        //replace "text" with "password" if it is a text field
        newHtml = oldHtml.replace(/text/g, "password");
    }
    //update the html
    myInput.outerHTML = newHtml;
    //restore the text value
    myInput = document.getElementById("myinput");
    myInput.value = text;
    //toggle the isPassword flag
    isPassword = !isPassword;
}
8 голосов
/ 02 апреля 2010

Вы не можете динамически изменять тип элемента ввода в Internet Explorer.

Один из возможных обходных путей:

  • Динамически создать новый элемент.
  • Скопируйте свойства старого элемента в новый элемент.
  • Установите тип нового элемента на новый тип.
  • Затем замените старый элемент новым.

Возможно, вы захотите проверить следующую статью для внедрения JavaScript выше:

Другим вариантом было бы статически создать два элемента, но одновременно иметь только один видимый. Видимость и фокус будут зависеть от значения элементов. В этом случае вы можете использовать что-то вроде этого:

<script type="text/javascript">   
  function checkType() {
     var thisElement = document.getElementById('field_text');
     var otherElement = document.getElementById('field_password');

     if (thisElement.value === 'Password') {            
        otherElement.style.display = 'inline';
        thisElement.style.display = 'none';
        otherElement.focus();
     }
  }
</script>

<input type="text" value="Password" id="field_text" onfocus="checkType();" />
<input type="password" value="" style="display: none;" id="field_password" />
0 голосов
/ 09 сентября 2018

Вы можете использовать код ниже, чтобы изменить тип <input> в IE с помощью JavaScript:

<html>

<head>
<meta http-equiv="X-UA-Compatible" content="IE=5" />

<script>

//this function will toggle the input between being a password or a text input
function transform(srcc,status) {


    //copy the element itself, its html source, and value text to a variable
    var myInput = document.getElementById(srcc.id);
    var oldHtml = myInput.outerHTML;
    var text = myInput.value;
    if (status=="click")
    {
        //replace "password" with "text" in the html if it is a password field
        var newHtml = oldHtml.replace(/password/g, "text");

    //update the html
    myInput.outerHTML = newHtml;
    //restore the text value
    myInput = document.getElementById(srcc.id);
    myInput.value = text;   
    document.getElementById(srcc.id).focus();
    }
    else
    {
        //replace "text" with "password" if it is a text field      
var newHtml = '<input id='+srcc.id+' type="password" value="cc" onclick="transform(this,\'click\');"  onblur="transform(this,\'blur\');" onmouseout="transform(this,\'mouseout\');">';


    //update the html
    myInput.outerHTML = newHtml;
    //restore the text value
    myInput = document.getElementById(srcc.id);
    myInput.value = text;
    }

}
</script>
</head>

<body>
 <input id="myinput" type="password" value="cc" onclick="transform(this,'click');"  onblur="transform(this,'blur');" onmouseout="transform(this,'mouseout');">
</body>

</html>
0 голосов
/ 11 марта 2011

Третий вариант - изменить имя класса вместо значения, а затем просто изменить изображение bg на фокусе вместо типа.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...