なぜこれが機能しないのか、私は困惑しています。複数の変数を宣言してもらいたいと思っています。私は何が間違っているのですか?
var message = (function ($) {
var $modalBody = $('.modal-body'),
$lblToUser = $modalBody.find('.to-user');
return {
toUser: function () {
$lblToUser.val('To');
$lblToUser.focus(function () {
if (this.value === 'To') this.value = '';
$(this).addClass('darker');
}).blur(function () {
if (this.value === '') this.value = 'To';
$(this).removeClass('darker');
});
},
};
})(jQuery);
message.toUser();