1

如果 div 标签的高度超过 700 像素,我需要根据条件将大型 HTML 页面拆分为多个页面。

我还可以根据字数拆分页面。

以下示例根据 HTML 标签拆分页面,而我需要根据 div 高度或否来实现相同。字数

示例http://spility.sourceforge.net/

我需要使用 c# 为 asp.net 执行此操作。我将不胜感激指向正确方向的指针,因为到目前为止我找不到与此相关的太多内容

在此处输入图像描述

信息:-我将文章存储为富文本,并在数据库字段中包含所有 HTML 标记,因此我正在寻找一种方法来使用 jquery 打破页面,如果 div 高度达到某个高度并打破它,如上图所示

4

1 回答 1

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
        });
    }
});
于 2012-10-03T13:54:34.983 回答