0
我從HTML文件中獲取一些文本並將其分配給一個變量。我想解析這個變量的文本:「AB」並在每個實例後插入換行符。使用jQuery插入換行符
$(flyout).click(function() {
WinJS.xhr({ url: "http://somesite.html", responseType: "text" })
.done(function complete(result) {
var rawText = result.responseText;
var endResult = $(rawText).text();
//need to parse endResult and add 2 line breaks and display in div fetchedtext
fetchedtext.innerText = ParsedendResult;
這就是它!非常感謝。 – Jotter 2014-10-16 20:26:45
很高興幫助。順便說一句,請注意,string.replace()是純粹的JavaScript - 不需要jquery。 – gvk 2014-10-16 20:50:35
明白了。謝謝! – Jotter 2014-10-16 21:01:52