Récupérer et intégrer du XML dans une page HTML
Bonjour, je suis entrain de créer un site pour mon boulot.
Je suis pour l'instant en local.
J'ai un fichier XML (un tableau) et j'aimerais l'intégrer à une de mes pages web. J'ai essayé plusieurs solutions proposées sur internet mais rien n'y fais, impossible d'afficher mon tableau XML sur ma page web.
J'espérais que vous pourriez m'aider, voici le code html
Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123
| <?xml version="1.0"?>
-<forbiddenlinks>
<lastupdate>last update: 2018/07/19 04:01:42</lastupdate>
-<table cellspacing="3" cellpadding="4">
-<tr>
<td> </td>
</tr>
</table>
-<section>
<title>Forbidden Links Section Title</title>
-<table cellspacing="3" cellpadding="4" border="1">
-<tr>
<th>From Bundle Name</th>
<th>From Bundle Rank</th>
<th>From Class</th>
<th>To Class</th>
<th>To Bundle Name</th>
<th>To Bundle Rank</th>
<th>Link Type</th>
</tr>
-<tr>
<td>OcsArchi</td>
<td>0</td>
<td>aOcsDeletedEntity</td>
<td>OcsPersonaliserInfo</td>
<td>OcsCardsArchi</td>
<td>5</td>
<td>myUses</td>
</tr>
-<tr>
<td>OcsCardsArchi</td>
<td>5</td>
<td>aOcsFeatureParameterChoice</td>
<td>aOcsMobileKeySet</td>
<td>OcsMobCardsApps</td>
<td>8</td>
<td>myUses</td>
</tr>
-<tr>
<td>OcsCardsArchi</td>
<td>5</td>
<td>aOcsFeatureParameterChoice</td>
<td>aOcsMobileICCardImage</td>
<td>OcsMobCardsApps</td>
<td>8</td>
<td>myUses</td>
</tr>
-<tr>
<td>OcsCardsArchi</td>
<td>5</td>
<td>aOcsAPDURegressionLog</td>
<td>OcsRegressionTraceLog</td>
<td>OcsCardAnalyseTools</td>
<td>16</td>
<td>myUses</td>
</tr>
-<tr>
<td>OcsMobCardsApps</td>
<td>8</td>
<td>aOcsMobileICCardImage</td>
<td>aOcsMobileEmbeddedProfileApplicationImage</td>
<td>OcsMobileCards</td>
<td>12</td>
<td>myUses</td>
</tr>
-<tr>
<td>OcsMobCardsApps</td>
<td>8</td>
<td>aOcsAPDUMobileRegressionLog</td>
<td>OcsRegressionTraceLog</td>
<td>OcsCardAnalyseTools</td>
<td>16</td>
<td>myUses</td>
</tr>
</table>
-<table cellspacing="3" cellpadding="4">
-<tr>
<td> </td>
</tr>
</table>
-<table cellspacing="3" cellpadding="4" border="1">
-<tr>
<th>Analysis</th>
<th/>
</tr>
-<tr>
<td>Total Number of bundles that do not close = </td>
<td>3</td>
</tr>
-<tr>
<td>Total Number of forbidden links = </td>
<td>6</td>
</tr>
</table>
</section>
</forbiddenlinks> |
Je ne connais pas bien javascript, ajax ou jquery, je ne sais donc pas comment je peux faire. Merci beaucoup pour votre future aide.