HTML提交按钮的问题?
<!-- method代表接受方式 post/get
form action 属性规定当提交表单时,向何处发送表单数据。 -->
<form action="#" method="post"/>
<!--label复选框的光标方便用户选中,可加可不加。 -->
<label for="user">名字:</label><input type = "text" id="user" name="user" size="15" value="请写上你的用户名" maxlength="15"/></br>
<label for="title">标题:</label><input type = "text" id="title" name="title" size="25" value="请输入标题" maxlength="25"/></br>
<label for="content">内容:</label></br><textarea id="content" name="content" rows="9" cols="35" value="please" wrap="off"/></textarea></br>
<input type="submit" id="submit" name="submit" value="发布" />
<input type="submit" value="提交" style="width:80px;height:100px;color:red; background-color:#3FF">
type:只有当type的设置等于submit时,按钮才有提交的作用
Value:按钮上显示的文字
color:本来就只针对文本而言有作用。
要改变背景色要用:background:#ccc