我可以找到alert()
响应的JS和HTML代码。但是我无法在对body
标签的响应中附加JS,但是HTML附加正常。
new Ajax.Request(product_url, {
method: 'post',
onSuccess: function(transport) {
$$('body')[0].insert(transport.responseText);
}
});
答案 0 :(得分:1)
new Ajax.Request(product_url, {
method: 'post',
onSuccess: function(transport) {
$$('body')[0].insert(new Element("div",{id:"popup"}));
$('popup').innerHTML = transport.responseText;
}
});
这给出了解决方案。