How to use jquery to determine if there is text in an element

Source: Internet
Author: User
Let <span><a href= "#" ></a></span> This structure has text display a color, no text to display another color ...

<style type= "Text/css" >
*{margin:0; padding:0; font-size:12px;}
body{background: #EEE;}
a{color: #666;}
li{List-style:none;}
ul{width:500px; height:230px background: #fff; margin:50px auto;}
UL li{width:500px; height:auto; overflow:hidden; margin-bottom:5px;}
UL Li span{display:block; float:left; width:100px; height:20px;}
</style>

<ul>
<li><span><a href= "#" > "Special" </a></span><a href= "#" >2005 the Queen Bein plastic accident death </a> </li>
<li><span><a href= "#" ></a></span><a href= "#" >2005 years Queen 贝因 plastic Surgery accidental death </a></ Li>
</ul>

Let <span><a href= "#" ></a></span> This structure has text to display a color, no text to display another color of the JQ code is as follows:

<script type= "Text/javascript" >
$ (function () {
$ ("ul Li span"). each (function () {
if ($ (this). Find ("A:eq (0)"). Text () = "") {
$ (this). CSS ("Background", "blue");
}else{
$ (this). CSS ("Background", "Red");
}
});
});
</script>



Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.