触发.live函数中的href事件

时间:2011-11-28 13:32:26

标签: javascript jquery html css

我需要能够在.live函数中触发典型的链接事件,如下所示。

$(".next").live('touchstart', function(event) {
   //trigger link event
});

与典型的href动作有些不同。

3 个答案:

答案 0 :(得分:2)

//i assume your href id is 'hrefid'

$(".next").live('touchstart', function(event) {
   //trigger link event
   $("#hrefid").click();
});

答案 1 :(得分:2)

$('.next').live('touchstart', function(event) {    
 window.location.href = $(this).attr('href');
}); 

答案 2 :(得分:1)

如果您想要导航到您可以执行的页面:

$(".next").live('touchstart', function(event) {
   //trigger link event
   window.location.href = "http://www.google.com";
});