用onclick javascript打开html文件

时间:2017-01-25 18:37:59

标签: javascript html web

我是javascript的新手。我正在尝试在单击图像时在同一目录中打开一个html文件。 (我的图像显示但onclick功能不起作用。)

projects = document.createElement('div');
projects.style.position = 'absolute';
projects.innerHTML = '<img src="image.png" class="projectspage" style="display:block; margin-top: 50px; margin-left: 100px; background-color: red; height: 100px; width: 100px;" />';
projects.onClick = function() {
  window.open('projects.html')
};

uiContainer.appendChild(projects);

1 个答案:

答案 0 :(得分:2)

projects.onClick = function() {
  window.location.href = 'valid-location-like-host.com/index.php
};

我假设您的意思是在点击时重定向到浏览器中的新页面。以上是在纯js中实现它的正确方法。