Magento和AJAX.Updater

时间:2012-05-23 05:11:14

标签: ajax magento

我已经查看了这里和Magento板上的所有回复,但仍然没有运气。

我有一个状态列表,通过AJAX.Updater调用来收集所选州的零售商店列表。 FireBug向我展示了RESPONSE和HTML,但代码永远不会填写指定的DIV。

这是我的调用,str是传递状态缩写。

new Ajax.Updater($('txtHint'),'../php/getdealer.php?q='+str, { method:'get', });

有关为什么它不会在屏幕上显示的任何想法?

1 个答案:

答案 0 :(得分:3)

应该

new Ajax.Updater($('txtHint'),'../php/getdealer.php?q='+str, { method:'get', });

不是

new Ajax.Updater('txtHint','../php/getdealer.php?q='+str, { method:'get' });

参考:http://prototypejs.org/api/ajax/updater