用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>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)