摘要: 1).text和.html的区别 text只能获取文本内容 html能获取到元素内部的html标签 $(function () { alert($("#pid").text()); }); $(function () { console.log($("#pid").html()); }); $(fu 阅读全文
posted @ 2020-02-11 14:58 ZedFFF 阅读(120) 评论(0) 推荐(0)