A simple way to call desktop exe programs on a web page

A simple way to call desktop exe programs on a web page
This article mainly introduces how to call desktop exe programs on web pages.

The web page code is as follows:

Copy code
The code is as follows:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-cn">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Document</title>
<script type="text/javascript">
function start(strPath){
var objShell = new ActiveXObject("wscript.shell");
objShell.Run(strPath);
objShell = null;
}
start("F:/adt-bundle-windows-x86-20130729/eclipse/eclipse.exe");
//Note that you must use / in the path, and you cannot use \
</script>
</head>
<body>
</body>
</html>

I hope this helps you all!

<<:  JavaScript recursion detailed

>>:  Implementation of CSS heart-shaped loading animation source code

Recommend

Example of using MySQL to count the number of different values ​​in a column

Preface The requirement implemented in this artic...

Detailed explanation of semiotics in Html/CSS

Based on theories such as Saussure's philosop...

Ant Design Blazor component library's routing reuse multi-tab function

Recently, there has been a growing demand for imp...

How to use JavaScript to get the most repeated characters in a string

Table of contents topic analyze Objects of use So...

Detailed tutorial for installing MySQL 8.0.11 compressed version under win10

After reinstalling my computer recently, I downlo...

How to clear the cache after using keep-alive in vue

What is keepalive? In normal development, some co...

Detailed explanation of meta tags and usage in html

I won’t waste any more time talking nonsense, let...

mysql is not an internal command error solution

The error "mysql is not an internal command&...

Angular Cookie read and write operation code

Angular Cookie read and write operations, the cod...

Use CSS content attr to achieve mouse hover prompt (tooltip) effect

Why do we achieve this effect? ​​In fact, this ef...

Native js to implement drop-down menu

Drop-down menus are also very common in real life...

A collection of possible problems when migrating sqlite3 to mysql

Brief description Suitable for readers: Mobile de...

Detailed explanation of incompatible changes in rendering functions in Vue3

Table of contents Rendering API changes Render fu...

CSS style solves the problem of displaying ellipsis when the text is too long

1. CSS style solves the problem of displaying ell...