获取元素的内容和属性
//下面这个点击按钮获取属性值
$("#btn1").click(function(){
alert("Text: " + $("#test").text());
});
jQuery attr() 方法用于获取属
2020-07-10