当有人点击一个按钮时,它会导致另一个页面出现。为了防止点击向下级联到出现的新页面上的另一个元素,我们使用 preventDefault。我们已经将其视为 StackOverflow 其他地方问题的解决方案。但是,它对我们不起作用。
代码:
// Bind what happens when user taps on app
$( '#templates .app_box' ).on( 'tap', function( ev ) {
// Get itunes ID
APP_PICKED = $( this ).attr( 'itunes_id' );
// If on category page, update category history with new path
if ( panabee_get_active_page().attr('id') == 'category_page' ) {
// Get app path and scrub app from it
var app_path = $(this).attr( 'path' );
app_path = app_path.substring( 0, app_path.lastIndexOf(PATH_DELIMITER) );
// Convert path string into array and store in history
CATEGORY_PICKED_HISTORY = get_path_array( app_path );
}
// Show app
if ( playing_game() ) {
play_app_game( this );
} else {
panabee_change_page( '#app_page' );
}
// Prevent double tap
ev.preventDefault();
});
复制:
1) 从您的 iPhone 访问www.tekiki.com。
2) 点击第一个应用程序图标。这会导致应用页面出现。如果您在正确的位置点击,原始点击会触发下载按钮(在应用程序页面上)。