0
alert($("#bottomTbodyTable tr [data-testlog]").length); // display value 0
alert($("#bottomTbodyTable tr").data("testlog")); // display the correct value
當顯示此屬性時,我無法理解值爲0的值。數據屬性格式不工作使用jQuery?
alert($("#bottomTbodyTable tr [data-testlog]").length); // display value 0
alert($("#bottomTbodyTable tr").data("testlog")); // display the correct value
當顯示此屬性時,我無法理解值爲0的值。數據屬性格式不工作使用jQuery?
你可能想
$("#bottomTbodyTable tr[data-testlog]").length
這是tr
和[data-testlog]
之間沒有空格一樣的,空間是指具有數據屬性的元素會一直tr
的後裔。
真的,沒有空間是必要的....我會試試看..這真的有助於它的工作。 –
你的解釋確實有幫助... –