I am using jQuery. I need to redirect the user from page1 to page2. Does anyone have any suggestions on how I would accomplish this?
|
5
|
|
|
|
|
|
Not jQuery specific, but
|
|||
|
|
|
|
Simply do :
|
||
|
|
|
|
var url = 'asdf.html'; window.location.href = url; hf |
||
|
|
|
|
easy $(document).ready(function(){ $("#header").click(function(){ top.location="index.php"}); }); |
||
|
|
|
|
I write some code lie this,
and now I want to redirect like this,
and it still let me have url = http://abc.com please give me a hand I need that! Thank a lot of viewing my trouble! |
||
|
|
|
It would help if you were a little more descriptive in what you are trying to do. If you are trying to generate paged data, there are some options in how you do this. You can generate separate links for each page that you want to be able to get directly to.
Note that the current page in the example is handled differently in the code and with CSS. If you want the paged data to be changed via AJAX, this is where jQuery would come in. What you would do is add a click handler to each of the anchor tags corresponding to a different page. This click handler would invoke some jQuery code that goes and fetches the next page via AJAX and updates the table with the new data. The example below assumes that you have a web service that returns the new page data.
|
||
|
|
|
|
You don't need jQuery to do just that:
|
||||||||||||||||
|
