方法一:
mui('body').on('tap', 'a', function() {
if(this.href){ //判断链接是否存在
location.href = this.href;
}
});
方法二:
$('body').on('tap', 'a', function () {
if(this.href){
location.href = this.href;
}
})
方法一:
mui('body').on('tap', 'a', function() {
if(this.href){ //判断链接是否存在
location.href = this.href;
}
});
方法二:
$('body').on('tap', 'a', function () {
if(this.href){
location.href = this.href;
}
})