gpt4 book ai didi

c# - 如何将长 HTML 文件拆分为单独的相互链接的页面,例如页面 1、页面 2、页面 3

转载 作者:行者123 更新时间:2023-11-28 09:38:23 29 4
gpt4 key购买 nike

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

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

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

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

我需要使用 C# 为 ASP.NET 执行此操作。我希望您能指出正确的方向,因为到目前为止我找不到与此相关的太多内容

enter image description here

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

最佳答案

这可能会让你开始:

$.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
});
}
});

关于c# - 如何将长 HTML 文件拆分为单独的相互链接的页面,例如页面 1、页面 2、页面 3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12709752/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com