我有一个html表单,需要在其中将新行字符添加到锚标记的title属性中。我在网上找到了一些解决方案,但是没有一个在我的代码中起作用。
我尝试添加\n





<br>


不知道丢失了什么。是由于数据切换阻止了破坏title属性的原因吗?
$(document).ready(function () {
$('form').attr('novalidate', true);
$('[data-toggle="tooltip"]').tooltip();
<a class="helptext fa fa-question-circle" data-toggle="tooltip" title="Additional information -
 You can provide further information here to for your
 application to issue a new card.
 Ensure a maximum of 200 characters
 is entered – including spaces."></a>
最佳答案
使用JavaScript设置标题对我来说很有效。
document.getElementById('asdf').title = 'line1\nline2';
关于javascript - 标题属性中的换行符在工具提示中不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/42798397/