試圖使用.attr函數檢索元素的屬性。我使用動態創建一個輸入元素,並將該值分配給類屬性。jQuery .attr()多個屬性
$('.item-selection-amount').click(function(){
console.log($(this).attr('class'));
});
這將返回:
item-selection-amount ui-corner-all price
item-selection-amount ui-corner-all 66.00
價格永遠是不同的,但有可能拉班的第三屬性值如attr('class[2]')
等?
我不認爲這是好主意,商店的價格在課堂上。因爲術語'class'定義了一組元素 – 2011-03-17 04:55:53