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