jQuery toggleClass для входных значений - PullRequest
1 голос
/ 21 февраля 2012

Я хочу добавить класс к входу в зависимости от значения ввода текста.Моя проблема в том, что на входе отображаются все классы.Вот часть html:

<form name="imcForm" id="imc">
    <p>poids: <input type="text" name="poids" size="10"></p>
    <p>taille: <input type="text" name="taille" size="10"></p>
    <p><input type="button" id="calcul" value="Calculer" onClick="calculImc()"></p>
    <p>result : <input type="text" name="imc" size="10" id="imcResult"></p>
    <p>Interprétation: <input type="text" name="interpretation" size="25" id="interpretation"></p>
</form>

А вот javascript / jQuery

$('#calcul').on("click", function() {
    $("#interpretation:input[value=itemA]").toggleClass('a');
    $("#interpretation:input[value=itemB]").toggleClass('b');
    $("#interpretation:input[value=itemC]").toggleClass('c');
    $("#interpretation:input[value=itemD]").toggleClass('d');
    $("#interpretation:input[value=itemE]").toggleClass('e');
    $("#interpretation:input[value=itemF]").toggleClass('f');
    $("#interpretation:input[value=itemG]").toggleClass('g');
});

Кроме того, посмотрите, что отображает ввод:

<input type="text" id="interpretation" size="25" name="interpretation" class="denutrition normale moderee severe morbide">

Итакпочему каждый элемент получает каждый класс по клику?

Ответы [ 3 ]

1 голос
/ 21 февраля 2012

Вам не хватает > в конце ввода <button>.

Также вы можете значительно упростить полученный код, особенно если имя класса всегда является последней буквойчто находится в поле ввода.

$('#calcul').on'click', function(){
    var class = $('#interpretation').val().slice(-1).toLowerCase();
    $('#interpretation').toggleClass(class);
});
0 голосов
/ 21 февраля 2012

попробуйте это:

$('#calcul').on("click", function() {

    var target = $("#interpretation");
    var val =  target.val();
    var className = "";
    if(val == "itemA")                     
    {
        className = "a";
    }
    else if(val == "itemB")                     
    {
        className = "b";
    }
    else if(val == "itemC")                     
    {
        className = "c";
    }
    //............
    target.attr("class", className );
});
0 голосов
/ 21 февраля 2012

Трудно точно сказать, что вы делаете.

Но проблема может заключаться в том, что у вас есть два обработчика кликов, один из jQuery и один "жестко запрограммированный": onClick="calculImc()"

...