當輸入元素集中時,我無法讓此jquery添加類。當輸入元素集中時,jQuery addClass
(function($) {
$('input.input-text').focus(function(){
$(this).parent('p').addClass('focused_on');
});
});
它應該在輸入焦點時將「focused_on」類添加到父p元素。
下面是HTML:
(function($) {
$('input.input-text').focus(function() {
$(this).parent('p').addClass('focused_on');
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<p class="form-row form-row form-row-first validate-required" id="billing_first_name_field"><label for="billing_first_name" class="">First
Name <abbr class="required" title="required">*</abbr></label><input type="text" class="input-text " name="billing_first_name" id="billing_first_name" placeholder="" autocomplete="given-name" value="" /></p>
我在做什麼錯?
。在你輸入標籤的類屬性尾隨空間 – user2182349