Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jQueryに文字列があります。
var s = "Text1, Text2, Text,true";
この変数を 2 つの部分に分割する必要があります。
var s1 = substring(...); //after this s1="Text1, Text2, Text" var s2 = substring(...); //after this s2="true"
変数を分割するのを手伝ってもらえますか?