我有一个使用 jquery 创建的输入
$('#charEntry').append("<input type='text' class='form-control' id='chars"+i+"' maxlength='" +charLength + "'" +
" minlength='" +charLength + "' pattern='(?=.*\\d)(?=.*[a-z])(?=.*[A-Z])(?=.*[-+*/%])(?=.*[.?,:;-~]).*'" +
" title='You Must Have One Upper Case Value
 One Lower-Case Value 
 One' required>");
我想在浏览器验证消息中添加一个换行符,如下所示
我试过 以及标题中的 \n 但它不起作用。
有什么建议吗?