0

在我的项目中,我使用 Cyber​​source Flex Microform 进行信用卡验证,但无法在模糊或键入时掩盖输入的数字。

我正在使用 0.4.0 版本的 Flex Microform API,在选项对象中,我给出了inputType: "password".

window.FLEX.microform(
        {
          keyId: kid,
          keystore: keystore,
          container: '#cardNumber-container',
          label: '#cardNumber-label',
          styles: {
            input: {
              'font-size': '16px'
            }
          },
          encryptionType: 'rsaoaep256',
          inputType: 'password'
        },
        function(setupError, microformInstance) {
         // credit card on blur event functionality
        }
)

仍然在该字段中,输入类型是默认的“tel”,而不是“password”。

4

0 回答 0