我運行的是以下幾點:如何從字符串中剝離字符串並將其推入數組?
var countries = [];
$("#usp-custom-3 option").each(function() {
var single = $(this).text();
if($(single == "United States of America")) {
$(this).text() == "United States";
}
countries.push(single);
console.log(single);
});
基本上,我試圖做的是United States of America
轉化爲United States
之前,將其與其餘國家推入陣在一起,因爲我有個國家的名單select option
。
也許'單== 「美國」;'?因爲單個是你傳遞給你的數組的對象 –
推''(this).text()'而不是單獨的,因爲你沒有分配到'單' – Durga
爲什麼downvote? –