<lb/>pis est) les oultragerent grandement les
<lb/>appellans Trop diteulx, Breschedens,
<lb/>Plaisans rousseaulx, Galliers, Chien-
JavaScriptの単純な置換機能または正規表現も使用する必要がある場合に、簡単に解析できるようにタグを置き換えたい!!!!
//open the document xml
$(document).ready(function()
{
$.ajax({
type: "GET",
url: "GP.xml",
dataType: "xml",
success: parseXml
});
});
//pasre the document
function parseXml(xml)
{
//find head and its text in the line breaks
$(xml).find("div").each(function()
{
$("#output").append($(this).replace(/\n/g, "<br>");
});
}