無論我嘗試什麼,Jquery似乎都無法將str2的類型轉換爲字符串。jquery:將[object對象]附加到字符串
function parseXml(xml)
{
$(xml).find("product").each(function()
{
var str1 = "div.timer";
var **str2** = $(this).find("id");
$("div.timer17").html(str1 + str2);
});
}
每次該功能跑,的div.timer17變化div.timer [對象的對象]內容。
我試圖將對象對象轉換爲一個字符串與新的字符串(OBJ),與json.stringify等沒有工作。請幫忙。
我的目標是追加str2到str1,所以我可以得到想要的選擇器(例如,div.timer25)。
這裏的XML:
<?xml version="1.0" encoding="utf-8" ?>
<products>
<product cookie="The red">
<timediff>02:28:59</timediff>
<username>denis</username>
<price>25</price>
<id>17</id>
</product>
<product cookie="The red">
<timediff>00:28:59</timediff>
<username>denis</username>
<price>35</price>
<id>18</id>
</product>
</products>
固定它......上帝我不能相信我花了這麼多時間。謝謝。 – Tool
不用擔心......我和別的人在同一點,所以我想通過幫助別人,我感覺更好。 – NullRef