<html>
<head>
<script src="jquery-1.4.2.min.js"></script>
</head>
<body>
    
<table id="test">
        
<tr>
            
<td></td>
            
<td><input type="text" dname="text" /><input type="hidden" dname="value" value="zhoulei is good!" /></td>
        
</tr>
    
</table>
    
<script language="javascript" type="text/javascript">
    
function UseFind() {
        alert($(
"#test tr:eq(0) [dname=value]").eq(0).val());
    }
    
</script>

    
<input type="button" value="click" onclick="UseFind();" />

</body>
</html>

相关文章:

  • 2022-12-23
  • 2021-05-11
  • 2022-12-23
  • 2022-12-23
  • 2022-01-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2023-02-25
  • 2021-08-11
  • 2021-04-01
  • 2021-11-30
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案