在全屏模式下启动 Google Chrome
Launch Google Chrome in Fullscreen mode
我需要每次在 asp.net 网络表单
中以全屏模式 (F11) 自动启动 Chrome
与我们执行 F11 键事件时相同。
试试这个:
<script type="text/javascript">
function goFullscreen(id) {
// Get the element that we want to take into fullscreen mode
var element = document.getElementById(id);
// These function will not exist in the browsers that don't support fullscreen mode yet,
// so we'll have to check to see if they're available before calling them.
if (element.mozRequestFullScreen) {
// This is how to go into fullscren mode in Firefox
// Note the "moz" prefix, which is short for Mozilla.
element.mozRequestFullScreen();
} else if (element.webkitRequestFullScreen) {
// This is how to go into fullscreen mode in Chrome and Safari
// Both of those browsers are based on the Webkit project, hence the same prefix.
element.webkitRequestFullScreen();
}
// Hooray, now we're in fullscreen mode!
}
</script>
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="goFullscreen('Button1'); return false"/>
点击按钮会出现这个样子
我需要每次在 asp.net 网络表单
中以全屏模式 (F11) 自动启动 Chrome与我们执行 F11 键事件时相同。
试试这个:
<script type="text/javascript">
function goFullscreen(id) {
// Get the element that we want to take into fullscreen mode
var element = document.getElementById(id);
// These function will not exist in the browsers that don't support fullscreen mode yet,
// so we'll have to check to see if they're available before calling them.
if (element.mozRequestFullScreen) {
// This is how to go into fullscren mode in Firefox
// Note the "moz" prefix, which is short for Mozilla.
element.mozRequestFullScreen();
} else if (element.webkitRequestFullScreen) {
// This is how to go into fullscreen mode in Chrome and Safari
// Both of those browsers are based on the Webkit project, hence the same prefix.
element.webkitRequestFullScreen();
}
// Hooray, now we're in fullscreen mode!
}
</script>
<asp:Button ID="Button1" runat="server" Text="Button" OnClientClick="goFullscreen('Button1'); return false"/>
点击按钮会出现这个样子