我曾尝试使用 html() 和 text() 来尝试更改锚的文本 - 但我无法让它工作:(
这是一个向你展示的小提琴 -
http://jsfiddle.net/kneidels/GzuLh/
$('#contact-form-send').bind('click',function(e) {
e.preventDefault();
$(".button").text('Logging in...');
$("#mess").delay(2000).fadeIn(400);
$("#mess").html('<p class="message">Username/Password do not match. Please contact our office for assistance</p>');
$(".button").text("Submit");
$("#mess").delay(2000).fadeOut(400);
});
谢谢!