我在一个简单的网站上遇到问题,我正在使用按钮在不同的页面之间切换,
在每个按钮后面我使用onclick()
方法打开其他页面
我正在使用的方法是JavaScript的onclick = "windows.open('xyz.html')"
但是当我点击按钮打开特定页面时,该特定页面不会打开,而是显示另一页面。
注意:网站在那里使用php放置在apachi(wamp服务器)的服务器上。
答案 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/');