在下面的代码(Coffeescript)中,在对 jQuery 自动完成数据源的 AJAX 调用中,在代码的第 5 行,我传递了 2 个参数 - term: 和 ll: For ll: 我正在尝试获取 $(this)成为应用 .autocomplete 的 DOM 元素。在这种情况下,它的 $('[type="text"][name*="[location]"]') 我需要在第 5 行用 ($this) 专门引用该 DOM 元素。但是,我相信 'this'在那个范围内指的是不是 DOM 元素的其他东西。有人可以帮忙解释我需要做什么吗?
$('[type="text"][name*="[location]"]').autocomplete(
source: (request, response) ->
$.ajax
url: $('[type="text"][name*="[location]"]').data('autocomplete-source')
data: {term: request.term, ll: $(this).siblings('[name*="[geocode_location]"]')}
contentType: "application/json; charset=utf-8"
success: (data) ->
response $.map(data, (item) ->
value: item.value
label: item.label
address: item.address
)
focus: (event, ui) ->
event.preventDefault()
$(this).val ui.item.label
select: (event, ui) ->
event.preventDefault()
$(this).val ui.item.label
$(this).siblings('[name*="[foursquare_id]"]').val ui.item.value
).data("autocomplete")._renderItem = (ul, item) ->
$("<li>").data("item.autocomplete", item).append("<a>" + item.label + "<br>" + item.address + "</a>").appendTo ul