如何在图像上应用检查?如何在标签上重定向,即<从一页


How to apply check on images? How to redirect on the on the tabs i.e <li> from a page

嗨,我的第一个问题是如何应用尺寸和图像扩展的检查,我也想知道,如果我的页面包含选项卡和每个选项卡都有不同的内容,我可以从其他页面重定向不同的选项卡

在javascript中,您可以通过

获取图像的尺寸
var img = document.getElementById('your_image_id');
alert(img.height, img.width);

你可以通过img.src检查它的扩展,但我不认为这是正确的,因为浏览器可能通过它的内容而不是它的src来检查扩展。