我目前正在使用此代码来替换不可用的占位符功能。我在 jQuery 上有一个点击监听器,它改变了占位符文本:
$('.contact-type').change(function(event) {
$contactInfo = $(this).closest('div').prev().find('#contact-info');
$contactInfo.removeClass();
$contactInfo.addClass('form-control input-lg');
$contactInfo.addClass('validate[required,custom[line]]');
$contactInfo.attr("placeholder", "LINE ID");
})
问题是当使用 jquery 占位符时,当我更改占位符文本然后我调用$('input, textarea').placeholder();
. 新的占位符不会改变。当值更改时,如何更改占位符?