是否有可能得到一些創建標籤使用jQuery的jQuery + HTML標籤
例如:
$(function() {
$('a').click(function() {
var a = this.a;
var b = this.b;
var c = this.c;
$('.info').html("a:" + a + "b:" + b + "c:" + c);
});
});
<a href="#" a="txt" b="text" c="get">Info</a>
有了這個代碼,我得到:
a: undefined b: undefined c: undefined
爲什麼要創建3個新的jQuery實例?使用.getAttribute – AutoSponge
@AutoSponge他沒有創建3個新的實例,他正在創建一個('t')並重用它。 – Blazemonger
代碼更改 – AutoSponge