0
我想讓它選擇變量「choice」來決定在下拉列表中選擇哪個元素。問題是當我點擊「標語」然後回到「標題」時,它開始寫入兩個文本字段。if-else語句改變選擇框
HTML
<select class="choice">
<option value="h">Header</option>
<option value="s">Slogan</option>
</select>
<input class="selecttext" type="text" placeholder="Main Text"></input>
的JavaScript
$(".fontsdiv .choice").on("change", function() {
var choice = $(".choice").val();
if (choice === "h") {
$(".selecttext").keyup(function(event) {
var titlechange = $(".selecttext").val();
$(".maintitle").html("<h1 class='maintitle'>" + titlechange + "</h1>");
$(".maintitle").draggable();
});
} else if (choice === "s") {
$(".selecttext").keyup(function(event) {
var titlechanges = $(".selecttext").val();
$(".secondtitle").html("<h1 class='secondtitle'>" + titlechanges + "</h1>");
$(".secondtitle").draggable();
});
}
});
那是因爲你正在使用'onchange' ..這是它應該是當值*改變* ..也許把另一個條件語句中存在抵消,如果做'choice!==「h」'? –
你想做什麼,請清除問題? –