似乎无法通过此工具提示来显示我出错的地方?css正在运行但不是工具提示?
$(document).ready(function() {
$('#mc_embed_signup').on('ajax:error', function() {
var $inputField = $(this).find('input[name="email"]')
$inputField.addClass('error_field');
$inputField.tooltip({
position: "center right",
offset: [-2, 10],
effect: "fade",
opacity: 0.7,
content: "This email is all ready registered"
});
});
});
答案 0 :(得分:0)
以防其他人在第二次调用工具提示('show')并将内容更改为title时修复了相同的问题:似乎文档并不清楚,因为人们会认为第一次调用会完成这项工作。
$(document).ready(function() {
$('#mc_embed_signup').on('ajax:error', function() {
var $inputField = $(this).find('input[name="email"]')
$inputField.addClass('error_field');
$inputField.tooltip({
position: "center right",
offset: [-2, 10],
effect: "fade",
opacity: 0.7,
title: "This email is all ready registered"
});
$inputField.tooltip('show');
});
});