jQuery匹配多个属性

前端之家收集整理的这篇文章主要介绍了jQuery匹配多个属性前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有以下标记,我想使所有单选按钮被选中。
<ul>
    <li><input type="radio" value="All" name="Foo"/>All</li>
    <li><input type="radio" value="New" name="Foo"/>New</li>
    <li><input type="radio" value="Removed" name="Foo"/>Removed</li>
    <li><input type="radio" value="Updated" name="Foo"/>Updated</li>
</ul>

我想通过属性匹配,但我需要匹配2个属性,@ name =’Foo’和@ value =’所有’。

这样的东西:

$("input[@name='Foo' @value='all']").attr('checked','checked');

有人可以展示如何做到这一点吗?

解决方法

以下HTML文件显示了如何执行此操作:
<html>
  <head>
    <script type="text/javascript" src="jquery-1.2.6.pack.js"></script>
    <script type="text/javascript">
      $(document).ready(function(){
        $("a").click(function(event){
          $("input[name='Foo'][value='All']").attr('checked','checked');
          event.preventDefault();
        });
      });
    </script>
  </head>
  <body>
    <ul>
      <li><input type="radio"  value="All"  name="Foo"  />All</li>
      <li><input type="radio"  value="New"  name="Foo"  />New</li>
      <li><input type="radio"  value="Removed"  name="Foo"  />Removed</li>
      <li><input type="radio"  value="Updated"  name="Foo"  />Updated</li>
    </ul>
    <a href="" >Click here</a>
  </body>
</html>

当您单击链接时,将选择所需的单选按钮。重要的一行是设置checked属性的一行。

原文链接:https://www.f2er.com/jquery/185426.html

猜你在找的jQuery相关文章