我需要將數組的元素導出到字符串,但在元素周圍保留單引號。正如你所看到的,將它們導出到toString()
方法輸出Banana, Orange, Apple, Mango
,但我需要讓它們像'Banana', 'Orange', 'Apple', 'Mango'
。如何在單引號中包裝字符串組
var fruits = ["Banana", "Orange", "Apple", "Mango"];
var map = fruits.toString();
console.log(map);
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
能否請你讓我知道如何做到這一點?
請注意,['.toSource()'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/toSource)會這樣做,儘管它很少支持。您還可以使用['JSON.stringify()'](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/JSON/stringify)並將單引號替換爲雙引號。 –