1
4

6 回答 6

3
$(document).ready(function () {
    $('a.signOutLink').click(function () {
        window.location = "LogOut.aspx";
    });
});
于 2012-11-08T10:31:49.603 回答
1

试试这个...

$(document).ready(function () {

$('.signOutLink').click(function () {
    window.location = 'LogOut.aspx';
});

);
于 2012-11-08T10:30:05.100 回答
1
于 2012-11-08T10:34:29.523 回答
0

$(文档).ready(函数 () {

$('.signOutLink').attr('href', 'LogOut.aspx') 

});

于 2012-11-08T10:32:22.123 回答
0

我要求此代码的最终目标的原因是:

如果您只想在单击链接时转到某个位置并且想要动态分配 url,则无需在click()事件中执行此操作。可以简单地通过在.ready()事件中设置属性来完成,就像这样,

$('a.signOutLink').prop('href','LogOut.aspx'); // or using the .attr() method

这样,一旦您单击链接,它就会跟随在href

于 2012-11-08T10:46:42.067 回答
0

谢谢大家。我使用了以下内容:

$('.signOutLink').click(function () {
    window.location.href("LogOut.aspx?a=b"); //Can use REPLACE also
    return false;  //FALSE

});
于 2012-11-08T11:15:48.997 回答