1
我注意到,在iOS5中,輸入佔位符文本不會自動清除焦點。清除iOS5中的輸入佔位符
我想這jQuery的功能,但它不工作:
$('input[type="number"]').focus(function(){
$('this').attr('placeholder','');
});
我注意到,在iOS5中,輸入佔位符文本不會自動清除焦點。清除iOS5中的輸入佔位符
我想這jQuery的功能,但它不工作:
$('input[type="number"]').focus(function(){
$('this').attr('placeholder','');
});
在我看來問題就出在這裏
$('this').attr('placeholder','');
嘗試更換:
$('this')
隨着
$(this)
是啊!我剛剛意識到這個愚蠢的錯誤,並回來修復或刪除這個問題。我會把它留給任何犯同樣錯誤的人。:)非常感謝! – claras