テキストエリア選択状態[javascript]
function TextAreaSelect(){
document.form1.text1.focus(); //テキストエリアをフォーカスする
document.form1.text1.select(); //テキストエリアを全選択する
}
function TextAreaSelect(){
document.form1.text1.focus(); //テキストエリアをフォーカスする
document.form1.text1.select(); //テキストエリアを全選択する
}