问题使用 System.Diagnostics.Process.Start() 打开一个 .exe;

问题描述

我想使用 <style> #modal{ display:none; position:absolute; z-index:10; top:20; left: 50%; transform: translate(-50%,0); background: black; } </style> <body> <button id="playBtn">Click to play</button> <div id="modal"> <video id="vid" width="320" height="240" autoplay muted preload="auto"> <source src="video.mp4" type="video/mp4"> Your browser does not support the video tag. </video> </div> <script> document.querySelector('#playBtn').addEventListener('click',function(){ document.querySelector('#modal').style.display = 'block'; document.getElementById('vid').play(); }) </script> </body> 打开 .exe 但没有任何反应,只是打不开,也没有出现异常。它只发生在那个 .exe

我想打开的程序是解析可移植的

System.Diagnostics.Process.Start

enter image description here

解决方法

暂无找到可以解决该程序问题的有效方法,小编努力寻找整理中!

如果你已经找到好的解决方法,欢迎将解决方案带上本链接一起发送给小编。

小编邮箱:dio#foxmail.com (将#修改为@)