1
這裏是我的jQuery:如何設置一個自定義屬性值等於一個變量?
if ($('div[data-sort= 23 ]').length > 0) {
$('div[data-sort= 23 ]').after(newdiv);
}
如果我想設置等於n這個數字23是我做了什麼:
n = 23;
if ($('div[data-sort= n ]').length > 0) {
$('div[data-sort= n ]').after(newdiv);
}
但是,這是行不通的。誰能告訴我爲什麼?
呃我覺得啞巴。當我接受它時讓我接受 – TaylorMac 2011-05-26 04:10:52
不要覺得笨拙;這是我們如何學習:) – 2011-05-26 04:13:36
再次感謝你。 :) – TaylorMac 2011-05-26 04:25:29