iOS 11 Safari HTML - 禁用"智能标点符号"?

don*_*atJ 4 unicode safari smart-quotes ios ios11

是否有一种很好的方法可以禁用iOS 11 Apple键盘生成的" 智能标点符号" - 在Safari的HTML登录表单中 - 特别是用户名字段?

问题是我们的用户名中有撇号的用户.在iOS 11上键入他们的用户名,而不知道unicode的细微之处,他们无法登录.

理想情况下,我们可以通过按住撇号键来指示此类用户禁用智能引号或键入正确的字符 - 但我正在为小孩子制作教育软件,这是不可能的.

问题更加复杂的是,用户名中只有少量用户选择实际的单引号,因此简单的替换地图将无效 - 我们无法规范化用户名,因为它们来自一个数字我们无法控制的外部系统/不能说很多.

Dai*_*Dai 8

不幸的是,根据这个MDN页面,没有已知的Webkit <input><textarea>属性来禁用智能引号,但是您可以使用我从这个QA中编写的脚本来修补它:如何在浏览器中禁用textarea字段的智能引号?

window.addEventListener('DOMContentLoaded', attachFilterToInputs );

function attachFilterToInputs() {

    var textInputs = document.querySelectorAll( 'input[type=text], input[type=[password], input[type=email], input[type=search], input[type=url], textarea, *[contenteditable=true]' );
    for( var i = 0; i < textInputs.length; i++ ) {
        textInputs[i].addEventListener( 'keypress', preventPretentiousPunctuation );
    } 
}

var conversionMap = createConversionMap;

function createConversionMap() {

    var map = {};
    // Open-quotes: http://www.fileformat.info/info/unicode/category/Pi/list.htm
    map[ 0x2018 ] = '\'';
    map[ 0x201B ] = '\'';
    map[ 0x201C ] = '"';
    map[ 0x201F ] = '"';

    // Close-quotes: http://www.fileformat.info/info/unicode/category/Pf/list.htm
    map[ 0x2019 ] = '\'';
    map[ 0x201D ] = '\"';

    // Primes: http://www.fileformat.info/info/unicode/category/Po/list.htm
    map[ 0x2032 ] = '\'';
    map[ 0x2033 ] = '"';
    map[ 0x2035 ] = '\'';
    map[ 0x2036 ] = '"';

    map[ 0x2014 ] = '-'; // iOS 11 also replaces dashes with em-dash
    map[ 0x2013 ] = '-'; // and "--" with en-dash

    return map;
}

function preventPretentiousPunctuation( event ) {

    if( event.key.length != 1 ) return;

    var code = event.key.codePointAt(0);
    var replacement = conversionMap[ code ];
    if( replacement ) {

        event.preventDefault();
        document.execCommand( 'insertText', 0, replacement );
    }
} 
Run Code Online (Sandbox Code Playgroud)

  • 我已经把它打开了一整天,这样当我开始“修复”我们的代码以处理 Apple 的更改时,它就可以开始使用了。我只是记下了 preventPretentiousPunctuation 的名字 :) (3认同)

小智 5

感谢Dai的回答纲要。不幸的是,当我们实施他们的解决方案并在iOS 11设备上进行测试时,我们发现keypress事件监听器根本没有触发。我们使用input事件和正则表达式字符串替换对他们的解决方案进行了重新设计,发现这确实对我们有用。

这是我们的变体,使用jQuery作为选择器和较短的替换列表。

<script type="text/javascript">

    // Here are the reference to Unicode Characters in the Punctuation
    // Open-quotes: http://www.fileformat.info/info/unicode/category/Pi/list.htm    
    // Close-quotes: http://www.fileformat.info/info/unicode/category/Pf/list.htm    

    window.addEventListener('DOMContentLoaded', attachFilterToInputs);

    // Patch the iOS Smart Punctuation functionality on restricted field(s), 
    // so that the user types acceptable characters.
    function attachFilterToInputs() {
        try {
            $("[name$='MyProtectedFieldName']").on('input', preventPretentiousPunctuation);
        }
        catch (err) {
            // do nothing
        }
    }

    function preventPretentiousPunctuation(event) {
        try {
            var str = $(this).val();
            var replacedStr = "";
            replacedStr = str.replace(/[\u2018\u2019\u201C\u201D]/g, 
                (c) => '\'\'""'.substr('\u2018\u2019\u201C\u201D'.indexOf(c), 1));

            if (str !== replacedStr) {
                $(this).val(replacedStr);
            }            
        }
        catch (err) {
            // do nothing
        }        
    }
</script>
Run Code Online (Sandbox Code Playgroud)

由于我没有代表对此发表评论,因此添加为答案。