1

我使用 Ajax 编写了一个网站,我想比较点击的链接以避免页面重新加载。我的方法是调用一个 varLink并将 url 存储到其中。每次点击#button, url 都会存储到 Link 中,然后我调用CompareLink()函数,然后调用GoToLink()函数。

var Link;

$('#button').click(function() {
    Link = http://myurl ;
    CompareLink();
    GoToLink();
}

我在数据比较方面遇到了麻烦。我想比较旧值Link和新值,所以我写了一个非常模糊的方法(非工作),我想知道是否有人可以帮助我。

function CompareLink() {
    if ( Link == .data(Link)) {
        //execute code
    }
}
4

2 回答 2

2

这个怎么样?

<a href='something here' class='button' >something</a>
<a href='something else here' class='button' >something else</a>​


var link = null, oldLink = null;
$('.button').click(function() {
    link = $(this).attr('href');
    if (oldLink == null) {
         oldLink = link;
    }
    CompareLink(link, oldLink);
    return false;
}

进而

function CompareLink(link, oldLink) {
    if ( link == oldLink) {
        // do something now
    }

    oldLink = link;
}

function GoToLink(link) {
    window.location.href = link;
}

查看我制作的这个小提琴:http: //jsfiddle.net/V9DyW/

于 2012-10-04T11:01:48.457 回答
0
var data = {}
var count = 0;
data['name' + count++] = "value1" -> name1
data['name' + count++] = "value2" -> name2

获取旧值

data['name' + (count - 1)] ->  'value1'
于 2021-06-14T14:09:19.103 回答