還暦目前の服飾デザイナでプログラマではありません。
ですから、私が示せるサンプルは次が限界。
それに質問の意図も余り理解できていません。
そういう事情で色んな問題、色んな改善点を含んでいると思います。
そこは、プロの回答者にお聞きになって下さい。
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>
<title>文章の表示</title>
<meta http-equiv="Content-script-Type" content="type">
<script type="text/javascript">
var petdogs = new Array(3);
petdogs[0]="シベリアンハスキーには、独特の美しさがあります。" +
"子犬ならば、なおさらのことです。";
petdogs[1]="最愛のシベリアンハスキーでした。";
petdogs[2]="同年春に我が家へやってきたゴールデンレトリバーのです";
function update_val(objects, new_value) {
objects.value = new_value;
}
</script>
<body>
<form name="main">
<span onclick="update_val(document.main.message, petdogs[0]);return true"><u>1,AAAA</u></span></br>
<span onclick="update_val(document.main.message, petdogs[1]);return true"><u>2,BBBB</u></span></br>
<span onclick="update_val(document.main.message, petdogs[2]);return true"><u>3,CCCC</u></span></br>
<p>
<textarea name="message" id="message" rows="3" cols="50" readonly="readonly"></textarea><br/>
</form>
</body>
</html>
お礼
外部ファイルとして読み込む方が楽そうですね 参考になりました。ありがとうございました。