autocomplete = 'off' is not working on firefox

后端 未结 17 1768
無奈伤痛
無奈伤痛 2020-12-17 09:25

I created 2 login pages of same domain.

  1. www.example.com/login.cfm
  2. www.example.com/newLogin.cfm

I put the form name different for 2 forms

17条回答
  •  猫巷女王i
    2020-12-17 09:44

    $("#CVV").on("focusout", function() {
        if ($(this).val() == "") {  
          $(this).attr("type", "text");
        }   
    });
    
    
    

提交回复
热议问题