如果div标签的高度超过700像素,我需要根据条件将大型HTML页面拆分为多个页面。
我也可以根据单词数拆分页面。
以下示例基于HTML标记拆分页面,而我需要根据div高度或不执行相同的操作。的话
示例http://splity.sourceforge.net/
我需要使用c#为asp.net做这个。我会很感激指向正确的方向,因为到目前为止我找不到相关的指针
信息: - 我将文章存储为包含数据库字段中所有HTML标记的富文本,因此我正在寻找一种方法来使用jquery来破解页面,如果div高度达到某个高度&打破它如上图所示
答案 0 :(得分:0)
这可能会让你开始:
$.ajax({
url: 'page.html',
dataType: 'html',
success: function(data){
var $html = $(data);
var $articles = $html.find('div.article'); //find the divs that you want to make use of
$articles.each(function(){
if($(this).height() > 200) //filter the articles based on your conditions
//do stuff with the filetered alticles
});
}
});