检查是否存在超过2px的图像

时间:2017-08-08 08:31:06

标签: javascript jquery

如何查看是否存在2px或更多的图像?目前的代码:

if( $("#imageID").length < 10) { 
   //Do something
   } 

2 个答案:

答案 0 :(得分:0)

您可以使用图像元素的naturalWidth和naturalHeight属性。

   if( document.getElementById("imageID").naturalWidth > 2) { // TO DO: do something
   } 

答案 1 :(得分:-2)

您可以使用width方法

$("#imageID").width() > 2