我发誓这曾经有效。我正在尝试做面包屑。我在名为“breadcrumb”的全局命名空间中有一个 JS 函数。它接受一个字符串作为其唯一参数:
function breadcrumb(attr) {
hash = { type: "POST", url: "brands/get_attributes", data: $("#attributeform").serialize() };
$.ajax(hash);
return false;
}
我在 HTML 页面上有我的面包屑链接,定义如下:
<a href="javascript:breadcrumb(\'<%= brand_attribute.attributename %>\');"><%= value %></a>
到目前为止还好。但是当我点击面包屑链接时,我会在 URL 中得到这个:
javascript:breadcrumb('Whirlpool');
还有一个带有“false”字样的空白页,这就是函数返回的内容。我的问题是,为什么它实际上导航到 javascript 函数本身?为什么没有呈现 Ajax 结果?