我從json響應生成一個HTML,這可以是任何數據。jquery在ID中輸入特殊字符
標識可以是任何東西像
Blue & White Dress
Black Dress
我試着像
$("['id="+dressId+"']").prop('checked', false);
但還是jQuery是拋出一個錯誤,說
Error: Syntax error, unrecognized expression: ['id=Blue & White Dress']
能不能介紹一下這方面的幫助?
謝謝,Inadvance。
我想你可能會在各地都有你的引用標記,試試這個。 $('[id =''+ dressId +'「]') – MCMXCII
你的id中有空格。你不能:http://stackoverflow.com/questions/70579/what-are-valid-values-for-the-id-attribute-in-html –
@ MCMXCII,謝謝你的答覆。你可以添加這個爲一個答案。所以我可以接受答案。 – sree