jQuery - визначте, вхідним елементом є текстове поле або список вибору


89

Як я можу визначити, чи є елемент, що повертається фільтром введення в jQuery, текстовим полем чи списком вибору?

Я хочу мати різну поведінку для кожного (текстове поле повертає текстове значення, вибір повертає як ключ, так і текст)

Приклад налаштування:

<div id="InputBody">
<div class="box">
    <span id="StartDate">
        <input type="text" id="control1">
    </span>
    <span id="Result">
        <input type="text" id="control2">
    </span>
    <span id="SelectList">
        <select>
            <option value="1">Option 1</option>
            <option value="2">Option 2</option>
            <option value="3">Option 3</option>
        </select>
    </span>
</div>
<div class="box">
    <span id="StartDate">
        <input type="text" id="control1">
    </span>
    <span id="Result">
        <input type="text" id="control2">
    </span>
    <span id="SelectList">
        <select>
            <option value="1">Option 1</option>
            <option value="2">Option 2</option>
            <option value="3">Option 3</option>
        </select>
    </span>
</div>

а потім сценарій:

$('#InputBody')
    // find all div containers with class = "box"
    .find('.box')
    .each(function () {
        console.log("child: " + this.id);

        // find all spans within the div who have an id attribute set (represents controls we want to capture)
        $(this).find('span[id]')
        .each(function () {
            console.log("span: " + this.id);

            var ctrl = $(this).find(':input:visible:first');

            console.log(this.id + " = " + ctrl.val());
            console.log(this.id + " SelectedText = " + ctrl.find(':selected').text());

        });

Відповіді:


167

Ви можете зробити це:

if( ctrl[0].nodeName.toLowerCase() === 'input' ) {
    // it was an input
}

або це, що повільніше, але коротше і чистіше:

if( ctrl.is('input') ) {
    // it was an input
}

Якщо ви хочете бути більш конкретним, ви можете протестувати тип:

if( ctrl.is('input:text') ) {
    // it was an input
}

2
Мені довелося додати синтаксис jquery $ (element) .is ('input'), щоб він працював, але в цілому чудово.
спостерігач

28

Ви також можете отримати властивості DOM за допомогою .prop

ось зразок коду для поля вибору

if( ctrl.prop('type') == 'select-one' ) { // for single select }

if( ctrl.prop('type') == 'select-multiple' ) { // for multi select }

для текстового поля

  if( ctrl.prop('type') == 'text' ) { // for text box }

Це працює як шарм з новою функцією jQuery prop (). Дякую.
Томас Бенц,

8

Якщо ви просто хочете перевірити тип, ви можете скористатись функцією .is () jQuery,

Як у моєму випадку, який я використовував нижче,

if($("#id").is("select")) {
 alert('Select'); 
else if($("#id").is("input")) {
 alert("input");
}
Використовуючи наш веб-сайт, ви визнаєте, що прочитали та зрозуміли наші Політику щодо файлів cookie та Політику конфіденційності.
Licensed under cc by-sa 3.0 with attribution required.