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);" />
关于web设计中的命名标准
#page
#header
#logo
#sm (servicemenu)
.regsiter
.login
#nav
.menu
.subMenu
.search
.sreachbtn(搜索按钮).sreachinput(搜索输入框)
#container
.bread
[#areaSidebar]
#sidebar
.title
.service
.news
.newslist
.piclist
.hot
.msg(提示信息)
.download
.tab
.list
.accordion
[#areaBanner]
#content
.contentMain
.input
.select
.note
.summary
.column
#footer
.areaFooter
.footerBottom
.partner
.copyRight
.friendLink
--------------------------------
#page (w:960px)
#logo (w:250px H:60px)
#areaHeader (W:468px H:60px)
#areaSidebar (W:200px H:auto)
#areaBanner (W:760px H:auto)
.areaFooter (W:auto H:auto)
--------------------------------
hlcf
hcrf
hlcrf
hcf
组件命名:
.box
.boxHeader
.boxBody
.boxFooter
.tab
.tabHeader
.tabHeaderContent
.tabContent
.tabFooter
.tabFooterContent
.panel
.panelHeader
.panelHeaderContent
.panelBody
.panelFooter
.panelFooterContent
.dialog
.dialogHeader
.dialogContent
.dialogFooter
.table
.caption
.tableList
.pageList
.Previous
.next
-------------------------------
页面碎片fragment命名:
/
index.html
login.html
/account
apply.html
/info
newsList.html
news.html
staticPage.html
/myaccount
overview.html
updUser.html
changePwd.html
energyAssessment.html
resourceCenter.html
/myaccount/report
reportManage.html
reportList.html (QA 提到的report列表)
/myaccount/report/rdsap
reportList.html (EA 提到的report列表)
addReport.html
step_ADDRESS.html
step_CHS.html ()
step_CLA.html ()
step_DIM.html ()
step_FLAM.html ()
step_FLO.html ()
step_GEN.html ()
step_IM.html ()
step_MAIHS.html ()
step_NOTSC.html ()
step_ROO.html ()
step_ROOR.html ()
step_SECHS.html ()
step_WAL.html ()
step_WATHS.html ()
step_WIN.html ()
/myaccount/report/sap
/myaccount/report/airs
http://cssya.com/ CSS
分享到:
相关推荐
HTML Button 的 onclick 事件汇总 HTML Button 的 onclick 事件是指在 HTML 文档中点击 Button 元素时触发的事件。onclick 事件可以绑定到 Button 元素上,以便在用户点击 Button 时执行特定的操作。 在 HTML 中...
在这个例子中,我们看到的是HTML按钮(`<input type="button">`)与`onclick`事件的结合,用于实现各种浏览器内置功能。 在提供的代码段中,每个`<input>`元素都有一个`onclick`属性,该属性包含了当按钮被点击时...
### Web开发中常用的Input事件汇总 在Web开发中,`<input>`元素是与用户交互的重要组成部分之一。本文将详细解读一系列与`<input>`相关的事件及其应用案例,特别是通过JavaScript来实现各种实用功能。 #### 打开...
例如:`<button onClick={handleClick}>Click me</button>`。 - React使用事件代理,所有事件都在`document`级别上统一监听,这减少了内存消耗,简化了事件的添加和移除。 - 事件对象是React合成事件,而非原生...
在ASP.NET中,可以通过监听`DataGrid`的`ItemDataBound`事件,动态地为每一行添加`onclick`或`ondblclick`事件,以便在用户单击或双击行时跳转到指定页面。 ```csharp private void grdCustomer_ItemDataBound...
如果希望在用户点击按钮前弹出确认对话框,可以使用 `Button.Attributes.Add` 来设置按钮的 `onclick` 事件。这样,当用户点击按钮时,会先显示一个确认对话框,只有在用户点击“确定”后,才会继续执行后续操作。 ...
3. HTML的全局事件属性:讲解了HTML中一些常见的事件属性,如onclick、onsubmit、onload等,用于响应用户的点击、提交、加载等事件。 第二章 HTML的标签(元素): 1. 文本标签:介绍了HTML文本相关标签,如<h1>-、...
在《网页弹出窗口代码总汇(javascript)》这一主题中,我们将深入探讨如何利用JavaScript语言来实现网页中的弹出窗口功能,包括基本的弹出窗口代码、自定义窗口属性以及如何在不同场景下应用这些代码。 ### 基本的...
<input type="button" value="刷新" onclick="location.href='uniteCells.html'"> ``` - **合并按钮**:触发 `uniteTdCells` 函数,实现单元格的合并。 - **显示按钮**:触发 `closeTD` 函数,控制列的显示与隐藏。...
<button onclick="window.close()">关闭窗口</button> ``` 通过将`onclick`事件绑定到`window.close()`函数上,当用户点击按钮时,窗口将被关闭。 #### 8、内包含的弹出窗口-一个页面两个窗口 在一个页面中弹出两个...
<asp:Button ID="FileUpload_Button" runat="server" Text="上传图片" OnClick="FileUpload_Button_Click" /> <!-- 省略其他标签 --> ``` 后台处理与第一种方式类似,只是使用FileUpload控件的`...
使用不同的控件实现这些功能,如使用TextBox收集文本信息,用RadioButton选择性别,用DropDownList选择血型,用CheckBoxList记录兴趣,最后通过Button事件将所有信息汇总显示在Label上。 通过这个实验,学习者不仅...
<input type="button" value="查看网页源代码" onclick="window.location='view-source:' + location.href"> ``` #### 十一、光标定位 为了让用户的光标在文本框中定位到最后一字符的位置,可以使用以下脚本: ``...
【Dreamweaver(DW)前端代码汇总】 Dreamweaver,简称DW,是由Adobe公司开发的一款强大的Web开发工具,尤其适合初学者和有一定编程基础的开发者使用。它集成了代码编辑、设计视图和预览功能,使用户可以方便地创建...
11. **在文字域的font写onclick事件**:可以在`<font>`标签内添加`onclick`事件,实现点击文字触发JavaScript函数。 12. **打印功能**:通过`window.print()`方法实现网页打印: ```html ...
`onClick`事件处理程序中调用`location.href`属性设置新的URL,从而实现页面跳转。 #### 七、利用HTML链接返回上一页 **示例代码:** ```html <a href="javascript:history.go(-1)">返回上一页 ``` **解析:** ...
<input type="button" name="Button" value="Button" onclick="document.frames('ifrmname').location.reload()"> 或者 <input type="button" name="Button" value="Button" onclick="document.all.ifrmname....
此外,为了更好地理解和使用JavaScript事件,你可以参考这个在线查询工具:[javascript事件与功能说明大全](http://tools.jb51.net/table/javascript_event),它汇总了JS常用的事件类型和函数功能,对开发者来说是个...