我有很多类.moo
的链接,我需要jquery来扫描它们的元素,然后在href的末尾添加一些文本。
例如:
这就是我所拥有的:
<a href="http://root.net" class="moo">root.net</a>
这是我想要的,在jQuery魔法发生之后:
<a href="http://root.net?iframe=true&width=600&height=300e" class="moo">root.net</a>
我需要这个的原因是一个jquery插件吃掉它:?iframe=true&width=600&height=300
。
可以这样做吗?我是一个jquery菜鸟,我一直在摆弄前置等等,但我仍然没有得到它。
感谢。
答案 0 :(得分:3)
$(function(){
$(".moo").each(function(){
$(this).attr("href",$(this).attr("href")+"?iframe=true&width=600&height=300");
});
});
这应该有效我认为
答案 1 :(得分:1)
$(function(){
$(".moo").each(function(){
$(this).attr("href", $(this).attr("href") + "?iframe=true&width=600&height=300");
});
});
答案 2 :(得分:0)
这不起作用吗?
$('。moo')。attr('href','http://root.net?iframe=true&width=600&height=300e');