var copy = function() {
// grab the origin and destination divs
var origin = document.getElementById("copyfromhere");
var destination = document.getElementById("pastehere");
// get the text from the origin, split on "+" and then get the second element in the array
var text = from.innerText.split("+")[1];
// apply that text to the destination div
destination.innerText = text;
}
<div id="copyfromhere">This is +how+ it works.</div>
<div id="pastehere"></div>
<button id="copy" onClick="copy()">Copy</button>
でインデックス化その配列2番目の値にアクセスすることができます
明らかに、これは元のdivに他の+
がない場合にのみ機能します。
あなたが試したことがあり、うまくいかなかったものを教えてください。 – kukkuz
+記号の間に何かをコピーしたいですか?文に他の+記号があるかもしれませんか? – Daniel
あなたは助けを得ることができます: https://stackoverflow.com/questions/8647216/get-content-of-a-div-using-javascript –