我有一个可以自动完成地址的输入字段,我想要一个地址选择来触发一个功能。
html
Address: <input id="searchTextField" type="text" autocomplete="on" runat="server" />
JS
$('input[searchTextField]').bind('autocompleteSelect', function() {
// some code...
});
我觉得我和上面的没有任何关系......