jquery更新整个页面同名的类
我正在尝试在类 ajax-link 上执行 foreach,以便我可以从 ajax 调用加载文本,但代码仅在页面上的第一个 ajax-link 上更新。该页面中的所有其他内容均未更新。我做错了什么?
$(document).ready(function(){
$(".ajax-link").each(function(){
var href = $(this).attr('href') + '?request=ajax&boo=' + $(this).text(); //URL
alert(href); // Is It working?
$(this).load(href); //Create the xmlHttpRequest
return false; //Stop the HTTP request
});
});
I am trying to do a foreach on class ajax-link so i can load text from an ajax call but the code is only upsating on the first ajax-link on the page. All the others in the page are not being updated. What am I doing wrong?
$(document).ready(function(){
$(".ajax-link").each(function(){
var href = $(this).attr('href') + '?request=ajax&boo=' + $(this).text(); //URL
alert(href); // Is It working?
$(this).load(href); //Create the xmlHttpRequest
return false; //Stop the HTTP request
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
return false;
将使您脱离each()
语句。你需要删除它。return false;
will break you out of theeach()
statement. You need to remove that.