I'm using admin lte 3 bootstrap 4. I want to add/change class of select option input (dropdownlist) with javascript classList. Background and validation color of dropdownlist will change depents on selected option, using add or change the class.
if I select Person 2, the background color become green (bg-success). The class works great when I change it manually with hardcode or in inspect element browser. But the script cant add/change the class when onchange select. Script work great in input type text, i have using them for input text validation. I don't know why not working in select option.
function changeclass($value) {
var element = document.getElementById(event.target.id);
console.log($value); //works great, return value of option
console.log(event.target.id); //works great, return element id = person
if ($value == 1) {
if (element.classList.contains("bg-success") == true) element.classList.replace("bg-success", "bg-warning");
if (element.classList.contains("bg-danger") == true) element.classList.replace("bg-danger", "bg-warning");
if (element.classList.contains("bg-warning") == true) element.classList.replace("bg-warning", "bg-warning");
if (element.classList.contains("bg-warning") == false) element.classList.add("bg-warning");
console.log(element.classList.contains("bg-success")); //works great, return false because no class bg-successin select class
console.log(element.classList.contains("color-pallete")); //works great, return true
}
if ($value == 2) {
if (element.classList.contains("bg-success") == true) element.classList.replace("bg-success", "bg-success");
if (element.classList.contains("bg-danger") == true) element.classList.replace("bg-danger", "bg-success");
if (element.classList.contains("bg-warning") == true) element.classList.replace("bg-warning", "bg-success");
if (element.classList.contains("bg-success") == false) element.classList.add("bg-success");
}
//.... until 4
if (element.classList.contains("is-valid") == false) element.classList.add("is-valid");
}
.bg-warning {
background-color: #ffc107 !important;
}
.bg-success {
background-color: #28a745 !important;
}
<select id="person" class="form-control color-pallete" onchange="changeclass(value);">
<option value='1'>person 1</option>
<option value='2'>person 2</option>
<option value='3'>person 3</option>
<option value='4'>person 4</option>
</select>
Any suggestions? thank you :)
This is the sort of thing that I would do:
I don't have event handlers, so the
event.target.id
won't work for me. Instead, I've updated the onchange function to passthis
which is a reference to the element itself. There are some lines that I haven't got styles for so can't test what would happen there.The idea is that, rather than check whether or not a classList contains a class, simply remove() them all (you won't break anything if the class name is not there) and then just add() the right class based on the selection. I've included classes for all four options just to show that it is working.