最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Check if max-width is set, in jQuery? - Stack Overflow

programmeradmin2浏览0评论

I'm trying to check if an inline style has already been applied by jQuery.

Normally, I would do something like this:

if ($(this).css('max-width') == '20%') {}

However, I don't know the percentage. What is the best way to check if there is any max-width applied?

I'm trying to check if an inline style has already been applied by jQuery.

Normally, I would do something like this:

if ($(this).css('max-width') == '20%') {}

However, I don't know the percentage. What is the best way to check if there is any max-width applied?

Share Improve this question asked Jun 9, 2014 at 11:07 user1469270user1469270
Add a ment  | 

3 Answers 3

Reset to default 4

By default .css('max-width') will return "none" if no max-width was defined, so the following condition should do the job:

if ($(this).css('max-width') !== 'none') { ... }

If you need to check for inline style only, meaning that you override the original max-width CSS property (e.g. from the stylesheet file), you may do the following:

if (this.style.maxWidth !== '') { ... }

... as pure maxWidth property of style will be empty "" if the CSS property was not set.

if ( $(this).css('max-width')!='none' ) { }

If on a element the max-width property is not applied then it will return none. Try to check none

$(this).css('max-width') =='none'

OR

if( $('#element').css('max-width') =='none' )  { 
 // max-width not EXISTS
} 
else
{
 // max-width EXISTS
}

Checking only the inline style :

if($('#element').attr('style') != 'undefined'){
 if( $('#element').attr('style').indexOf('max-width') == -1 )  { 
  // max-width not EXISTS
 } 
 else
 {
   // max-width EXISTS
 }
}
else
{
  // Inline style not EXISTS
}

OR

I remend to use Jquery selector Attribute Contains Word Selector

$('div[style ~= "min-width:"]')

Working Fiddle

发布评论

评论列表(0)

  1. 暂无评论