button
适用DTD:Strict Transitional Frameset 适用浏览器:All
释义
按钮(button)
语法
<button 属性="属性值">~标签内容~</button>
<button 属性="属性值">~标签内容~</button>
属性
nbsp;
示范
创建一个提交按钮:
<button type="submit">按钮文字...</button>
<button type="submit">按钮文字...</button>
范例
下面的例子显示了XHTML文件基础结构: 运行打印
下面的例子显示了XHTML文件基础结构: 运行打印
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素button</title>
</head>
<body>
<form action="javascript:alert('此表单仅用于演示!')">
Name:<input type="text"><br>
E-mail:<input type="text"><br>
<button type="submit">提交</button> <button type="reset">重置</button>
</form>
<input type="text" size="25" value="Google Search" onfocus="this.value=''"> <button type="button"><img src="src/search.gif" alt="图像按钮"></button><br>
<button type="button" title="点击我没有任何作用,我还没有指定任何功能">这是通用型按钮</button>
</body>
</html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>元素button</title>
</head>
<body>
<form action="javascript:alert('此表单仅用于演示!')">
Name:<input type="text"><br>
E-mail:<input type="text"><br>
<button type="submit">提交</button> <button type="reset">重置</button>
</form>
<input type="text" size="25" value="Google Search" onfocus="this.value=''"> <button type="button"><img src="src/search.gif" alt="图像按钮"></button><br>
<button type="button" title="点击我没有任何作用,我还没有指定任何功能">这是通用型按钮</button>
</body>
</html>