我需要能够在.live函数中触发典型的链接事件,如下所示。
$(".next").live('touchstart', function(event) {
//trigger link event
});
与典型的href动作有些不同。
答案 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";
});