怎样用HTML的超链接打开应用程序?

怎样用HTML的超链接打开应用程序?,第1张

用HTML的超链接打开应用程序的方法是利用window.open执行一个exe或者bat文件实现的。

1、编写带有button的html代码

<!DOCTYPE html>

<html>

<body>

<form action="demo-form.php">

<input type="button" value="点击打开记事本" onclick="window.open('file:///C:/Windows/System32/notepad.exe')" />

</form>

</body>

</html>

2、执行后运行效果如下:

1、只有一个提示点击提交的按钮

2、点击后记事本程序被打开:

给你举个简单的例子

将以下代码保存为1.html

<html>

<body><form

action="2.asp"

method="get">请输入你的名字<br>

<input

type="text"

name="yourname"

value="在这里输入你的名字"><br>

<input

type="submit"

value="提交"></form>

</body>

</html>

将以下代码保存为

2.asp

<html>

<body>

<%

yname=request.querystring("yourname")

response.write("hello,"&yname&"<br>")

%><a

href="1.html">重填</a>

</body>

</html>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/yw/11816054.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-18
下一篇 2023-05-18

发表评论

登录后才能评论

评论列表(0条)

保存