1
我有一個表數據角色,我想添加一個可摺疊的數據角色。不過,我將不得不通過JQuery Mobile代碼動態添加。動態添加數據角色(可摺疊數據角色)
$('#tabledataroleid').data('role','collapsible-set');
$('#tabledataroleid').data('role','collapsible');
有沒有東西與我的代碼?^
我有一個表數據角色,我想添加一個可摺疊的數據角色。不過,我將不得不通過JQuery Mobile代碼動態添加。動態添加數據角色(可摺疊數據角色)
$('#tabledataroleid').data('role','collapsible-set');
$('#tabledataroleid').data('role','collapsible');
有沒有東西與我的代碼?^
您應該使用jQuery .attr() method向元素添加屬性。試試這個:
$('#tabledataroleid').attr('role','collapsible-set');
$('#tabledataroleid').attr('role','collapsible');
你預期會發生什麼?究竟發生了什麼?問一個比我的代碼有什麼問題更具體的問題會讓你更快得到更多的幫助:) – Dbz