如何使用jQuery获取DOM元素的ID?

在jQuery中,attr方法用于获取第一个匹配元素的id属性。

$("btn1").attr("id")

在你的例子中

示例

<html >

<head>

<title>iddom</title>

   <script src="../../Scripts/jquery-1.4.1.min.js" type="text/javascript"></script>

      <script type="text/javascript">

      $(document).ready(function () {

         $('#btn1').click(function () {

            alert( $('#test').attr('id'));

         });

      });

   </script>

</head>

<body>

   <div id="test">

   </div>

      <button type="button" id="btn1">Click Here</button><br />

</body>

</html>

以上是 如何使用jQuery获取DOM元素的ID? 的全部内容, 来源链接: utcz.com/z/331388.html

回到顶部