jquery当中获取某个属性值的方法
例 1.6(attr.html)
<html>
<head>
<title>attr(name)方法</title>
<style type="text/css">
<!--
em{undefined
color:#0000ff;
}
-->
</style>
<script language="javascript" src="jquery.min.js"></script>
<script language="javascript">
$(function(){undefined
var sContent = $("em:eq(1)").attr("content"); //获取第二个<em>元
素的title属性值
$("span").text(sContent); //将sContent的内容放在<span>标签内
});
</script>
</head>
<body>
<p>我们马克-to-win<em content="javaC">java</em>有段时间了</p>
<p>javascript<em content="javascriptC">刚学</em>所以难</p>
<p>Content属性的值是:<span></span></p>
</body>
</html>
更多内容请见原文,文章转载自:https://blog.csdn.net/qq_44594371/article/details/103062097