0

我正在使用 jquery geo-autocomplete 插件将位置建议为用户类型(http://code.google.com/p/geo-autocomplete/)。

用户选择建议后,我想编辑页面上的链接。我正在尝试扩展选择功能。我已经定义了一个新的选择函数来覆盖核心函数。这是一个javascript示例:

$.widget( "ui.geo_autocomplete", {

// setup the element as an autocomplete widget with some geo goodness added
_init: function() {
    this.options._geocoder = new google.maps.Geocoder; // geocoder object
    this.options._cache = {}; // cache of geocoder responses
    this.element.autocomplete(this.options);


    // _renderItem is used to prevent the widget framework from escaping the HTML required to show the static map thumbnail
    this.element.data('autocomplete')._renderItem = function(_ul, _item) {
        return $('<li></li>').data('item.autocomplete', _item).append(this.options.getItemHTML(_item)).appendTo(_ul);
    };
},

// default values
options: {

            select: function(event, ui) {
                alert('in override function');
             },

用户选择其中一个建议后,将出现警报,然后填充文本框。我希望执行核心选择功能(从而填充文本框),然后拥有要执行的代码(我将更改链接的href)。我怎样才能做到这一点?

4

1 回答 1

0

你能不能试试这样的事情:

    options: {

            select: function(event, ui) {
            $(this).trigger('change');
     },     
于 2012-08-10T13:15:08.227 回答