English 中文(简体)
How to apply pagination in IFrame
原标题:
  • 时间:2009-11-09 10:42:34
  •  标签:
  • html
  • xhtml

I have an IFrame with a Table enclosed within it. I want to display 15 rows of a table and than a Next button must be there to move forward.

How to apply pagination for IFrame?

最佳回答

This is essentially answered in Basic jQuery question: How to change iframe src by clicking a link?.

You would just need to build GET parameters for the frame source, and build links for each of the values in the main page.

For example:

<a href="foo.html?page=1" target="myiframe">Page 1</a>
<a href="foo.html?page=2" target="myiframe">Page 2</a>
<a href="foo.html?page=3" target="myiframe">Page 3</a>

<iframe name="myiframe"></iframe>

The catch is that your main page will need to know the status of the frame to generate the right links -- this will require some javascript parsing of the frame source URL and regenerating the links based on that.

Instead of using a frame, I would recommend loading the whole table inside the main page and using something like DataTables to generate the pagination for you.

问题回答

暂无回答




相关问题
CSS working only in Firefox

I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....

image changed but appears the same in browser

I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...

Firefox background image horizontal centering oddity

I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...

Separator line in ASP.NET

I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!

热门标签