空であるため、Javascript で Web サイトに「開始」番号をリストすることができませんでした。
ここに私のhtmlボディコード、
<script type="text/javascript">
captionsDoc = loadXMLDoc("captions.xml");
x=captionsDoc.getElementsByTagName('text');
for(i=0;i<x.length;i++)
{
document.write(x[i].getAttribute('start'));
document.write("/n");
}
</script>
次に、これは captions.xml からの xml コードのサンプルです
<transcript>
<text start="6.738" dur="2.277">and explain a few interesting points about them.</text>
<text start="9.016" dur="2.722">But first I need to crush your expectations.</text>
<text start="24.716" dur="1.611">So let's begin.</text>
<text start="26.328" dur="2.535">First we start with the solvent diethyl phthalate.</text></transcript>