How to force Safari browser to disable icloud Keychain in member registration forms ?

浪子不回头ぞ 提交于 2019-12-25 07:00:31

问题


We are developing an online hotel CRM system in DevEx environment and there is member registration form in our system.

Our customers said that there is a huge problem for their hotel customers when they try to sign up. As you may know in Safari Browser there is a icloud Keychain speciality to keep your most used password and automatically put that password while you try to fill registration form in browser. So if a hotel customer tries to register from safari browser and if they activated Keychain they can't enter their password into registration form.

What i need to know is how should i force safari browser to disable that Keychain speciality ?


回答1:


Take a look at this thread: Safari Keychain prevent with html

Seems there is a Jquery plugin which means all you have to do once you've added it is add the following to your input fields:

spellcheck="false" autocomplete="off"

There fore making your input fields look something like this:

<input type="hidden"  id="txtPass" name="txtPass" spellcheck="false" autocomplete="off">
<input type="text"  id="txtPass" name="txtPass" spellcheck="false" autocomplete="off">

Link to the Jquery Plugin is here: http://plugins.jquery.com/disable-autocomplete/

But like I said you get more information in the previos thread I linked too. Hope this helps



来源:https://stackoverflow.com/questions/31604433/how-to-force-safari-browser-to-disable-icloud-keychain-in-member-registration-fo

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!