Disable autocomplete on html helper textbox in MVC

前端 未结 9 1145
太阳男子
太阳男子 2021-01-12 02:17

Ok,

I would in normal asp.net use a theme to turn off autocomplete on all text boxes on an entire site. However i cannot do this on MVC because nothing in the theme

9条回答
  •  无人共我
    2021-01-12 02:33

    Use following jQuery Code

     $(document).ready(function() {
        $("form,input").attr("autocomplete","off");
     });
    

提交回复
热议问题