1

我有一个带有控件的网格视图。网格视图具有 css 类“网格”。

我正在遍历网格视图并在其中选择文本,但我不想在此网格视图中的下拉列表中选择文本。

$('.grid tr td').live('mouseover',
        function () {
                $(this).attr("title", $(this).text());
                $(this).aToolTip({
                    // no need to change/override  
                    closeTipBtn: 'aToolTipCloseBtn',
                    toolTipId: 'aToolTip',
                    // ok to override  
                    fixed: false,                   // Set true to activate fixed position  
                    clickIt: false,                 // set to true for click activated tooltip  
                    inSpeed: 200,                   // Speed tooltip fades in  
                    outSpeed: 100,                  // Speed tooltip fades out  
                    tipContent: '',                 // Pass in content or it will use objects 'title' attribute  
                    toolTipClass: 'defaultTheme',   // Set class name for custom theme/styles  
                    xOffset: 5,                     // x position  
                    yOffset: 5,                     // y position  
                    onShow: null,                   // callback function that fires after atooltip has shown  
                    onHide: null                    // callback function that fires after atooltip has faded out  
                });


        });

这是我在网格中循环的 jquery 代码,但我不知道如何从这个循环中过滤下拉列表。

我试过$('.grid tr td').not('.dropdownCssClass').live('mouseover', 但没有工作请帮助我。

4

1 回答 1

1

Try to use the following selector:

$('.grid tr td:not(:has(select))')

or

$('.grid tr td:not(:has(.dropdownCssClass))')
于 2013-07-01T07:30:37.287 回答