HTML控件<button>的点击事件怎么用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了HTML控件<button>的点击事件怎么用相关的知识,希望对你有一定的参考价值。

HTML Button onclick 事件汇总

<input onclick="document.all.WebBrowser.ExecWB(1,1)" type="button" value="打开" name="Button1">
<input onclick="document.all.WebBrowser.ExecWB(4,1)" type="button" value="另存为" name="Button2">
<input onclick="document.all.WebBrowser.ExecWB(10,1)" type="button" value="属性" name="Button3">
<input onclick="document.all.WebBrowser.ExecWB(6,1)" type="button" value="打印" name="Button">
<input onclick="document.all.WebBrowser.ExecWB(8,1)" type="button" value="页面设置" name="Button4">
<input onclick="window.location.reload()" type="button" value="刷新" name="refresh">
<input onClick="window.external.ImportExportFavorites(true,\'\');" type="button" value="导入收藏夹" name="Button5">
<input onClick="window.external.ImportExportFavorites(false,\'\');" type="button" value="导出收藏夹" name="Button32">
<input onClick="window.external.AddFavorite(location.href, document.title)" type="button" value="加入收藏夹" name="Button22">
<input onClick="window.external.ShowBrowserUI(\'OrganizeFavorites\', null)" type="button" value="整理收藏夹" name="Submit2">
<input onclick=\'window.location="view-source:" + window.location.href\' type="button" value="查看源文件" name="Button7">
<input onClick="window.external.ShowBrowserUI(\'LanguageDialog\', null)" type="button" value="语言设置" name="Button6">
<input onClick="document.execCommand(\'Cut\')" type="button" value="剪切">
<input onClick="document.execCommand(\'Copy\')" type="button" value="拷贝">
<input onClick="document.execCommand(\'Paste\')" type="button" value="粘贴">
<input onClick="document.execCommand(\'Undo\')" type="button" value="撤消">
<input onClick="document.execCommand(\'Delete\')" type="button" value="删除">
<input onClick="document.execCommand(\'Bold\')" type="button" value="黑体">
<input onClick="document.execCommand(\'Italic\')" type="button" value="斜体">
<input onClick="document.execCommand(\'Underline\')" type="button" value="下划线">
<input onClick="document.execCommand(\'stop\')" type="button" value="停止">
<input onClick="document.execCommand(\'SaveAs\')" type="button" value="保存">
<input onClick="document.execCommand(\'Saveas\',false,\'c:\\\\Autorun.inf\')" type="button" value="另存为">
<input onClick="document.execCommand(\'FontName\',false,fn)" type="button" value="字体">
<input onClick="document.execCommand(\'FontSize\',false,fs)" type="button" value="字体大小">
<input onClick="document.execCommand(\'refresh\',false,0)" type="button" value="刷新">
<input onclick="window.location.reload()" type="button" value="刷新">
<input onclick="history.go(1)" type="button" value="前进">
<input onclick="history.go(-1)" type="button" value="后退">
<input onclick="history.forward()" type="button" value="前进">
<input onclick="history.back()" type="button" value="后退">
<input type="button" value="弹出固定窗口" onClick="javascript:window.open(\'#\',\'\',\'scrollbars=yes,width=600,height=200\')" >
<input type="button" value="没有提示关闭" onclick="window.opener=null;window.close();" />
<input type="button" value="点击进入另一页面" onclick="window.location.href=\'\'" />
<input type="button" value="返回上一页" onclick="javascript:history.go(-1);" />
参考技术A 超文本标记语言或超文本链接标示语言(标准通用标记语言下的一个应用)HTML(HyperText Mark-up Language)是一种制作万维网页面的标准语言,是万维网浏览器使用的一种语言,
它消除了不同计算机之间信息交流的障碍。
它是目前网络上应用最为广泛的语言,也是构成网页文档的主要语言。
HTML文件是由HTML命令组成的描述性文本,HTML命令可以说明文字、图形、动画、声音、表格、链接等。HTML文件的结构包括头部(Head)、主体(Body)两大部分,其中头部描述浏览器所需的信息,而主体则包含所要说明的具体内容

在table表中,每一行里面都有一个button按钮,怎么实现点击按钮就能把该行的值传给php处理页面?

参考技术A 通过GET把值传给一个页面处理 参考技术B 在table的button控件中添加onclick事件,在onclick事件中获取对应的控件属性,然后传递,以下是我的一个简单测试代码,2个文件:test.php和do.php在本地测试通过:

test.php
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=utf-8">
</head>
<script type="text/javascript">
function doThing()
var name = document.getElementById("myinput").value;
if (name.length != 0)

location.href= "do.php?name=" + name;


</script>
<body>
<table>
<tr>
<td>name:</td><td><input type="text" name="name" id="myinput" /></td><td><input type="button" value="submit" onclick="doThing();" /></td>
</tr>
</table>
</body>
</html>

do.php
<?php
if (isset($_GET["name"]))
$name = $_GET["name"];
echo $name;
else
echo "fail!";
本回答被提问者和网友采纳
参考技术C 传个id值过去就行啦追问

可否写一句代码呢?我这有写好像不对啊~

以上是关于HTML控件<button>的点击事件怎么用的主要内容,如果未能解决你的问题,请参考以下文章

在table表中,每一行里面都有一个button按钮,怎么实现点击按钮就能把该行的值传给php处理页面?

Android Button 注册点击事件

怎样设置type="file" 的按钮的class

JQuery 动态添加控件ID,无法触发点击事件

ListView中加入Button后,Button的点击事件和ListView的点击事件冲突

Android按钮点击事件