在服务器上的网站的不同页面之间导航

时间:2014-08-23 07:11:15

标签: javascript php html css client-server

我在一个简单的网站上遇到问题,我正在使用按钮在不同的页面之间切换,
在每个按钮后面我使用onclick()方法打开其他页面 我正在使用的方法是JavaScript的onclick = "windows.open('xyz.html')" 但是当我点击按钮打开特定页面时,该特定页面不会打开,而是显示另一页面。

  

注意:网站在那里使用php放置在apachi(wamp服务器)的服务器上。

3 个答案:

答案 0 :(得分:0)

试试这个

window.location='xyz.html'

答案 1 :(得分:0)

试试这个。

window.location.href = 'xyz.html';

window.open('xyz.html')//This will open xyz.html in a new window.

答案 2 :(得分:0)

你可以试试这个:

onclick="window.location='xyz.html' ";

OR

header("Location:http: //www.xyz.html/") ` (or) ` header('Location: http://www.xyz.html/');