小码哥的IT人生

onshow 事件

JavaScript基础 2022-06-08 12:02:55小码哥的IT人生shichen

onshow 事件

实例

当 <menu> 元素显示为上下文菜单时执行 JavaScript:

<div contextmenu="mymenu">
  <p>Right-click inside this box to see the context menu!
  <menu type="context" id="mymenu" onshow="myFunction()">
    <menuitem label="Refresh" onclick="window.location.reload();"></menuitem>
  </menu>
</div>

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
div {
  background: yellow;
  border: 1px solid #cccccc;
  padding: 10px;
}
</style>
</head>
<body>
<p>本例演示如何将 "onshow" 事件分配给 menu 元素。</p>
<div contextmenu="mymenu">
<p>在此框中右键单击以查看上下文菜单!
<menu type="context" id="mymenu" onshow="myFunction()">
  <menuitem label="Refresh" onclick="window.location.reload();" icon="ico_reload.png"></menuitem>
  <menu label="Share on...">
    <menuitem label="Twitter" icon="ico_twitter.png" onclick="window.open('//twitter.com/intent/tweet?text=' + window.location.href);"></menuitem>
    <menuitem label="Facebook" icon="ico_facebook.png" onclick="window.open('//facebook.com/sharer/sharer.php?u=' + window.location.href);"></menuitem>
  </menu>
  <menuitem label="Email This Page" onclick="window.location='mailto:?body='+window.location.href;"></menuitem>
</menu>
</div>
<p><b>注释:</b>onshow 事件目前仅在 Firefox 中受支持。</p>
<script>
function myFunction() {
  alert("The context menu is about to be shown");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

定义和用法

当 <menu> 元素显示为上下文菜单时,会发生 onshow 事件。

浏览器支持

表中的数字注明了完全支持该事件的首个浏览器版本。

事件 Chrome IE Firefox Safari Opera
onshow 不支持 不支持 8.0 不支持 不支持

语法

在 HTML 中:

<element onshow="myScript">

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
div {
  background: yellow;
  border: 1px solid #cccccc;
  padding: 10px;
}
</style>
</head>
<body>
<p>本例演示如何将 "onshow" 事件分配给 menu 元素。</p>
<div contextmenu="mymenu">
<p>在此框中右键单击以查看上下文菜单!
<menu type="context" id="mymenu" onshow="myFunction()">
  <menuitem label="Refresh" onclick="window.location.reload();" icon="ico_reload.png"></menuitem>
  <menu label="Share on...">
    <menuitem label="Twitter" icon="ico_twitter.png" onclick="window.open('//twitter.com/intent/tweet?text=' + window.location.href);"></menuitem>
    <menuitem label="Facebook" icon="ico_facebook.png" onclick="window.open('//facebook.com/sharer/sharer.php?u=' + window.location.href);"></menuitem>
  </menu>
  <menuitem label="Email This Page" onclick="window.location='mailto:?body='+window.location.href;"></menuitem>
</menu>
</div>
<p><b>注释:</b>onshow 事件目前仅在 Firefox 中受支持。</p>
<script>
function myFunction() {
  alert("The context menu is about to be shown");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在 JavaScript 中:

object.onshow = function(){myScript};

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
div {
  background: yellow;
  border: 1px solid #cccccc;
  padding: 10px;
}
</style>
</head>
<body>
本例使用 HTML DOM 将“onshow”事件分配给菜单元素。
<p>This example uses the HTML DOM to assign an "onshow" event to a menu element.</p>
在此框中右键单击以查看上下文菜单!
<div contextmenu="mymenu">
<p>Right-click inside this box to see the context menu!
<menu type="context" id="mymenu">
  <menuitem label="Refresh" onclick="window.location.reload();" icon="ico_reload.png"></menuitem>
  <menu label="Share on...">
    <menuitem label="Twitter" icon="ico_twitter.png" onclick="window.open('//twitter.com/intent/tweet?text=' + window.location.href);"></menuitem>
    <menuitem label="Facebook" icon="ico_facebook.png" onclick="window.open('//facebook.com/sharer/sharer.php?u=' + window.location.href);"></menuitem>
  </menu>
  <menuitem label="Email This Page" onclick="window.location='mailto:?body='+window.location.href;"></menuitem>
</menu>
</div>
onshow 事件目前仅在 Firefox 中受支持。
<p><b>注释:</b>onshow 事件目前仅在 Firefox 中受支持。</p>
<script>
document.getElementById("mymenu").onshow = function() {myFunction()};
function myFunction() {
  alert("The context menu is about to be shown");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

在 JavaScript 中,使用 addEventListener() 方法:

object.addEventListener("show", myScript);

完整实例:

<!DOCTYPE html>
<html>
<head>
<style>
div {
  background: yellow;
  border: 1px solid #cccccc;
  padding: 10px;
}
</style>
</head>
<body>
<p>本例使用 addEventListener() 方法将 "show" 事件附加到 menu 元素。</p>
<div contextmenu="mymenu">
<p>在此框中右键单击以查看上下文菜单!
<menu type="context" id="mymenu">
  <menuitem label="Refresh" onclick="window.location.reload();" icon="ico_reload.png"></menuitem>
  <menu label="Share on...">
    <menuitem label="Twitter" icon="ico_twitter.png" onclick="window.open('//twitter.com/intent/tweet?text=' + window.location.href);"></menuitem>
    <menuitem label="Facebook" icon="ico_facebook.png" onclick="window.open('//facebook.com/sharer/sharer.php?u=' + window.location.href);"></menuitem>
  </menu>
  <menuitem label="Email This Page" onclick="window.location='mailto:?body='+window.location.href;"></menuitem>
</menu>
</div>
<p><b>注释:</b>目前仅 Firefox 支持 show 事件。</p>
<script>
document.getElementById("mymenu").addEventListener("show", myFunction);
function myFunction() {
  alert("The context menu is about to be shown");
}
</script>
</body>
</html>

可以使用本站在线JavaScript测试工具测试上述代码运行效果:http://www.phpcodeweb.com/runjs.html

注释:Internet Explorer 8 或更早的版本不支持 addEventListener() 方法

技术细节

冒泡: 不支持
可取消: 不支持
事件类型: Event
支持的 HTML 标签: <menu>
DOM 版本: Level 3 Events

版权所有 © 小码哥的IT人生
Copyright © phpcodeweb All Rights Reserved
ICP备案号:苏ICP备17019232号-2  

苏公网安备 32030202000762号

© 2021-2024