通用处理程序 (ashx) 不会随 jquery 自动完成插件一起出现
使用自动完成功能时不会调用我的通用处理程序,
我的 .aspx 页面中有此内容。
$(document).ready(function () {
$("#test").autocomplete("Handlers/MyHandler.ashx");
}
这个文件包括 jquery-1.4.2.min.js 和 jquery-ui-1.8.custom.min.js
我在服务器上放置了一个断点,永远不会到达,还使用 firebug 来查看 jquery 是否正在发出请求,但什么也没有,可以是插件的错误吗?
My generic handler is not being called when using autocomplete,
I have this in my .aspx page.
$(document).ready(function () {
$("#test").autocomplete("Handlers/MyHandler.ashx");
}
with this files included jquery-1.4.2.min.js and jquery-ui-1.8.custom.min.js
I put a breakpoint on server never is reached, also used firebug to see if jquery is making its request and nothing, could be a bug with the plugin?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您没有正确初始化 jQuery ui 自动完成功能,请传递带有 source 属性的对象:
直接传递字符串用于访问其方法之一,例如:
You are not initializing the jQuery ui autocomplete properly, pass a object with a source property:
Passing a string directly is used to access one of its methods, for example: