0
的邊框顏色如何更改下列輸入的顏色:如何更改輸入標籤
<div class="form-group">
<label for="destinationInput">End:</label>
<input type="text" name="destination" id="destinationInput" >
</div>
我想在JavaScript中添加類。
$("destinationInput").addClass('borderColor');
這是行不通的: 的CSS:
.borderColor{
border:2px solid #FF0000;
}
**回答:**錯過''#在選擇'$( 「#destinationInput」).addClass('borderColor');' – Tushar
結束爲排錯 – Tushar
哦對。我忘了這個。感謝您的幫助 –