0
我已經使用jQuery一個月了,我只有幾個小問題,但現在我有一個非常大的問題。問題在於jQuery不會將CSS添加到附加輸入中。我也創建示範http://jsfiddle.net/heY2u/極其奇怪的jQuery bug或者我只是愚蠢?
HTML:
<div id='container'></div>
<input type="text" value="Test1">
JS:
$('input, textarea, select').on('focusin', function() {
$(this).data('holder', $(this).attr('placeholder'));
$(this).attr('placeholder', '');
$(this).css('outline', '#F78181 solid 1px');
});
$('input, textarea, select').on('focusout', function() {
$(this).attr('placeholder', $(this).data('holder'));
$(this).css('outline', '');
});
$('<input type = "text" value = "Test2">').appendTo('#container');
alert(123);
解釋爲什麼*** ***。 –
發佈半完整答案以獲得「杆位」並不是真正的板球。 (編輯仍然沒有說**爲什麼**。)*編輯*:好吧,現在有一個「爲什麼」。 –