Heim  >  Artikel  >  Web-Frontend  >  页面跳转问题_html/css_WEB-ITnose

页面跳转问题_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:451123Durchsuche

问题描述:在做一个图书推荐系统,想在展示新书的页面中,点击某一书名就跳转到该书的详细介绍页面,我该用什么方法实现?
request对象吗?我是个新手,第一次做系统,请大家多多帮忙!


回复讨论(解决方案)

一、javascript的实现
window.location.href='hello.html';

二、.net 实现
Response.Redirect("hello.html",false);
Server.Transfer("hello.html",false);
Response.Write("<script>window.open("hello.html");</script>");


完全不知道!!!

我是想在图书下面做一个链接,点击该链接之后,跳转到该图书详细信息介绍页,在该介绍页中输出图书在数据库中的其他信息

http://blog.sina.com.cn/s/articlelist_5567393070_0_1.html   看看有用

我是想在图书下面做一个链接,点击该链接之后,跳转到该图书详细信息介绍页,在该介绍页中输出图书在数据库中的其他信息


实现方法:
(1)当你点击图书的链接之后会把这本图书在数据库中的id传给后端
(2)后端通过你传递过来的id查询数据库,将该书的所有信息查询出来
(3)将查询结果返回给前端
(4)前端界面获取数据并显示出来

url传值比较方便  把书的id传过去然后通过传过来的id查询详细信息

URL传值就行

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn