JAVASCRIPT と CSS を使用してテキストエリアのスタイルを設定しようとしているので、クリックするとサイズが高さ 20 ピクセルから高さ 120 ピクセルに拡大されますdocument.getElementById("tweet_area")
が、テキストエリアをクリックせずにページ内でクリックするとテキストエリアが拡大します。これについて私を集めることができますか JavaScript は初めてです
<script language="javascript">
document.onclick=changeElement;
function changeElement() {
var textarea = document.getElementById("tweet_area");
textarea.style.backgroundColor="#fff";
textarea.style.width="565px";
textarea.style.color="#000";
textarea.style.height="120px";
textarea.style.paddingLeft="1px";
textarea.style.paddingTop="1px";
textarea.style.fontFamily="Tahoma";
textarea.style.fontSize="10pt";
textarea.style.border="groove 1px #e5eaf1";
textarea.style.position="inherit";
textarea.style.textDecoration="none";
}
</script>
<style type="text/css">
#tweet_area{
width:565px;
height:25px;
overflow:hidden;
margin:1px auto;
font-family:Tahoma;
font-size:10pt;
font-weight:400px;
color:#000;
max-width:565px;
min-width:565px;
min-height:25px;
max-height:120px;
border:groove 1px #e5eaf1;
padding-right:10px;
}
</style>