清除iOS5中的输入占位符
我注意到在iOS5中,输入占位符文本在焦点上不会自动清除。
我尝试了这个jquery函数,但它没有工作:
$('input[type="number"]').focus(function(){ $('this').attr('placeholder',''); });
它在我看来问题就在这里
$('this').attr('placeholder','');
尝试更换:
$('this')
同
$(this)