jQuery +阿贾克斯实时搜索
我正在使用 w3schools 上的示例进行 mysql 数据库搜索并通过 ajax livesearch 检索一些结果,我想操作这些结果(拖放它们),但我遇到了问题,因为脚本在您输入搜索并获取结果之前加载所以它对搜索结果绝对没有任何作用。对此事有什么想法吗?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
啊-谢谢你的澄清。
您想要拖动的元素是在拖放初始化后创建的。您需要使它们可拖动:
例如,将“dragMe”作为类添加到项目中。从服务器填充列表后,然后使这些项目可拖动:
我真的会研究 jQuery 的 ajax 函数及其 自动完成
为了澄清和 jquery (针对您引用的示例) ):
在你的 php 中,更改你的显示,使其成为可以拖动的块。
在那之后,您真的想做一些更多的研究,以更好地了解正在发生的事情。
Ah - thanks for the clarification.
The elements you want to drag are being created after the drag/drop initialization. You need make them draggable:
for example, add 'dragMe' as a class to the items. Once the list is populated from the server, then make those items dragable:
I would really look into jQuery's ajax functions and their autocomplete
To clarify and for jquery (against your cited example):
In your php, change your display so it is blocks that can be dragged.
past that, you'll really want to do some more research to get a better idea of whats going on.