我正在尝试使用 Prototype 在几个锚点周围放置标题。但它不起作用?有人可以帮我弄这个吗?谢谢。
function placeheader(item, i)
{
item.insert({
//This doesnt work:
before: "<h3>",
after: "</h3>"
//This works:
//top: "test3",
//bottom: "test4"
});
}
$$('div.subresult a').each(placeheader);