$().attr()返回值问题
2017-07-29 本文已影响0人
Jacqueline_JS
<button name="19">btn</button>
<script>
$("button").on("click",function () {
alert(typeof $(this).attr("name")); //返回的是字符串
});
</script>
<button name=19>btn</button>
<script>
$("button").on("click",function () {
alert(typeof $(this).attr("name")); //返回的是字符串
});
</script>