jQuery-确定输入元素是文本框还是选择列表


89

如何确定jQuery中:input过滤器返回的元素是文本框还是选择列表?

我希望每个行为都不同(文本框返回文本值,选择返回键和文本)

设置示例:

<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());

        });

Answers:


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')使其工作,但总的来说很棒。
2016年

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(),这就像一个魅力。谢谢。
Thomas.Benz

8

如果您只想检查类型,则可以使用jQuery的.is()函数,

就像我在下面使用的情况一样

if($("#id").is("select")) {
 alert('Select'); 
else if($("#id").is("input")) {
 alert("input");
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.