-4

我有来自Railscast #288 Billing with Stripe的这段代码。

if status == 200
  alert(response.id)
else
  $('#stripe_error').text(response.error.message)
  $('input[type=submit]').attr('disabled', false)

此特定行$('#stripe_error').text(response.error.message)显示错误消息。由于我也在使用 Twitter Bootstrap,因此我想添加class="alert alert-error"到该 div。我怎样才能做到这一点?

4

2 回答 2

1

你可以通过使用下面的代码来做到这一点:

$('#stripe_error').text(response.error.message).addClass('alert alert-error')
于 2012-08-08T15:13:35.637 回答
0

使用addClass

$('#stripe_error').addClass('alert alert-error');
于 2012-08-08T15:08:21.547 回答