如何从javascript文件复制href

时间:2011-08-21 21:07:49

标签: javascript jquery hyperlink href

我有一个链接

<a id="cartLink" href="https://site.foxycart.com/cart?cart=checkout" >Test</a>

当您点击此链接时,它会加载一个弹出对话框(它不会更改为新的窗口位置等)

我现在想要动态生成该URL,所以我想我会使用jquery和类似的东西:

 $('#cartLink').live('click', function () {
     var count = $("#abc").text();

     var url = "https://site.foxycart.com/cart?cart=view&MyCount=" + count;

     NOW SOMEHOW REPLICATE THE SAME WAY THE HREF WOULD HAVE WORKED

});

所以你可以看到我不能使用window.open()等。复制相同行为的最佳方法是什么,就像我点击了href set的链接一样。

2 个答案:

答案 0 :(得分:3)

由于您选择了已选择ID为#cartLink的任何元素,因此您可以在函数中将其称为$(this)。

var url = ...之后;写下以下内容:

$(this).attr('href', url);

http://api.jquery.com/attr/

答案 1 :(得分:0)

像这样的东西

 $('#cartLink').live('click', function (e) {
     e.preventDefault();//This will prevent the default behavior of the anchor.
     var count = $("#abc").text();
     var url = "https://site.foxycart.com/cart?cart=view&MyCount=" + count;
     window.location.href = url;//It will redirect to "url" in the current window.
 });