This commit is contained in:
2025-04-12 16:42:49 +08:00
commit 79754f81a1
42 changed files with 4685 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
jQuery(document).ready(function($) {
$('.view-location').on('click', function() {
alert('经纬度:' + $(this).data('lat') + ', ' + $(this).data('lng'));
});
$('.view-gpu').on('click', function() {
alert('GPU 信息:\n' + $(this).data('gpu'));
});
$('.view-ua').on('click', function() {
alert('User Agent\n' + $(this).data('ua'));
});
$('.view-uach').on('click', function() {
alert('User Agent Client Hints\n' + $(this).data('uach'));
});
});