jquery内容选择器(根据内容匹配元素)

Posted yangzailu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jquery内容选择器(根据内容匹配元素)相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
 <head>
  <title>内容选择器</title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <style type="text/css">
  .yang{ border-collapse: collapse; width:500px;height:30px;border:1px solid red;"}
  </style>
  <script  type="text/javascript" src="jquery-1.7.1.min.js"></script>
  <script type="text/javascript">
  /*
    :contains(text)    //根据内容匹配元素
    :empty   //匹配内容为空的元素
    :has(selector)  //匹配包含指定选择器的元素
    :parent //匹配内容不为空的元素
  */
        window.onload=function(){
        $(#btnOk).click(function(){
           //根据内容匹配元素
            $("li:contains(‘国‘)").html(水浒传);
            });
        };
  </script>
 </head>
 <body>

     <ol>
            <li>三国演义</li>
            <li>西游记</li>
            <li></li>
            <li>红楼梦</li>
     </ol>

    <hr/>
  <input type="button" id=‘btnOk‘ value=‘确定‘  />
 </body>
</html>

 

以上是关于jquery内容选择器(根据内容匹配元素)的主要内容,如果未能解决你的问题,请参考以下文章

锋利的jQuery 要点归纳(一) jQuery选择器

jquery内容选择器(匹配内容为空的元素)

jquery内容选择器(匹配包含指定选择器的元素)

jquery内容选择器(匹配内容不为空的元素)

jQuery 选择器

jQuery选择器