在Javascript-复制

时间:2016-03-22 05:33:06

标签: javascript buttonclick

在我们当前的项目中,我们创建了一个仪表板,其中有几个按钮。当我们点击后端的按钮时,它会执行一些使用JavaScript定义的动作(按钮点击事件)。现在,我想在Chrome中的按钮点击事件中打开指定的网址。 HTML页面(仪表板)的代码如下所示:

<html>
<head>
<title>Welcome to Internet of Things, Service and People Portal</title>
<HTA:APPLICATION
  APPLICATIONNAME="Run Exe or Bat files from HTA by Hackoo"
  ID="MyHTMLapplication"
  VERSION="1.0"/>
</head>
<style type="text/css"> 
#below { height:210px; width:500px; border: 2px solid black}
</style>

<script>
function Dashboard() {
    var redirectWindow = window.open('http://localhost:8686/temperature', 'blank');
    redirectWindow.location;
};
</script>

<body>

</div>
<div id="below">
<h1>Control </h1>   
<input style="width: 110px; height:100px;color: white; background-color: #203040; 
font-family:Book Antiqua;" img src="images/Dashboard.png" type="image"  onClick="Dashboard();"/>
</div>

</body>
</html>

当我点击Dashboard按钮时,它会在Internet Explorer中打开给定的URL。我想在Chrome中打开。是否有任何特定的东西在chrome中打开给定的URL ???我错过了什么?

1 个答案:

答案 0 :(得分:0)

如果您已在Chrome中打开原始页面,则单击该链接肯定会在chrome中打开一个新窗口。如果在IE中打开原始应用程序,我们无法在chrome中打开窗口。