Drupal 7 #ajax change事件阻止同一元素上的其他更改事件处理程序

时间:2017-03-02 10:55:08

标签: javascript jquery drupal drupal-7

我正在使用Drupal 7 Form Api构建带有select元素的自定义表单。我将#ajax回调附加到它,它将触发更改事件。

$form['landing']['country'] = array(
    '#type' => 'select',
    '#options' => array(),
    '#attributes' => array('class' => array('landing-country-list')),
    '#validated' => TRUE,
    '#prefix' => '<div id="landing-countries" class="hide">',
    '#suffix' => '</div>',    
    '#title' => 'Select country',
    '#ajax' => array(

      'wrapper' => 'landing-cities',

      'callback' => 'get_cities',

      'event' => 'change',

      'effect' => 'none',

      'method' => 'replace'

    ),    
);

但问题是它会阻止js中相同选择的自定义更改功能。在这个函数中我想获得选定的选项值。所以这不会触发:

$('body').on('change', 'select.landing-country-list', function() {
    optval = $(this).find('option:selected').val();
});

此代码在文件中,我以$ form包含:

$form['#attached']['js'] = array(
    'https://code.jquery.com/jquery-2.2.4.min.js',
    drupal_get_path('module', 'landing') . '/landing.js',
);

提前感谢您的帮助!

1 个答案:

答案 0 :(得分:1)

如果您想在ajax发送之前捕获,可以使用:

$(document).ajaxSend(function(){
    var val = $('select.landing-country-list').val();
});

否则,如果你想在ajaxcallback之后获得价值:

    $(document).ajaxComplete(function(event, xhr , options) {
          if(typeof options.extraData != 'undefined' && options.extraData['_triggering_element_name'] === 'country'){
// only on ajax event attached to country select
               var val =  $('select.landing-country-list').val();
          }
    });