富文本编辑器[WYSIWYG],使用 javascript 进行分页

发布于 2024-07-17 06:31:59 字数 345 浏览 8 评论 0原文

是否可以使用JavaScript在富文本编辑器中实现类似于MS Word的分页。

我需要使用 JavaScript 实现一个包含页面文本的编辑器。 如果我输入的文本超出了页面的固定限制,则会自动创建一个新页面,并且文本会溢出到新页面,且格式保持不变。 此外,如果我从其他来源复制大文本,那么它应该根据文本长度计算页数,并将其划分为具有原始文本所有格式的页面。

我需要仅使用 JavaScript、HTML 和 CSS 根据像素大小将文本分成行。

如果我从页面内删除内容,则下一页的内容应填充到当前页面中,如果删除页面中的所有内容,则应删除该页面。 MS Word 中几乎所有的分页功能都应该在这个中实现。

Is it possible to implement paging similar to MS Word in a rich text editor using JavaScript.

I need to implement an editor using JavaScript that contains text in pages. If i type text that exceeds the ficed limit of a page then automatically a new page is created and text overflows to the new page with formatting intact. Also if I copy large text from another source then it should calculate the number of pages depending on the text length and divide it into pages with all the formatting of the original text.

I need to break the text into lines based on pixel size using only JavaScript, HTML and CSS.

If i delete contents from inside a page then contents from the next page should be populated in the current page and if all the contents from a page is deleted then the page should be deleted. Almost every paging feature in MS word should be implemented in this one.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

长梦不多时 2024-07-24 06:31:59

请尝试这个...

Javascript 代码 pagination.js 文件

function Pager(tableName, itemsPerPage) {
    this.tableName = tableName;
    this.itemsPerPage = itemsPerPage;
    this.currentPage = 1;
    this.pages = 0;
    this.inited = false;
    this.showRecords = function(from, to) {
        var rows = document.getElementById(tableName).rows;
        // i starts from 1 to skip table header row
        for (var i = 1; i < rows.length; i++) {
            if (i < from || i > to)
            rows[i].style.display = 'none';
            else
            rows[i].style.display = '';
        }
    }

    this.showPage = function(pageNumber) {
        if (! this.inited) {
            alert("not inited");
            return;
        }
        var oldPageAnchor = document.getElementById('pg'+this.currentPage);
        oldPageAnchor.className = 'pg-normal';

        this.currentPage = pageNumber;
        var newPageAnchor = document.getElementById('pg'+this.currentPage);
        newPageAnchor.className = 'pg-selected';

        var from = (pageNumber - 1) * itemsPerPage + 1;
        var to = from + itemsPerPage - 1;
        this.showRecords(from, to);
    }

    this.prev = function() {
        if (this.currentPage > 1)
            this.showPage(this.currentPage - 1);
    }

    this.next = function() {
        if (this.currentPage < this.pages) {
            this.showPage(this.currentPage + 1);
        }
    }

    this.init = function() {
        var rows = document.getElementById(tableName).rows;
        var records = (rows.length - 1);
        this.pages = Math.ceil(records / itemsPerPage);
        this.inited = true;
    }

    this.showPageNav = function(pagerName, positionId) {
        if (! this.inited) {
            alert("not inited");
            return;
        }
        var element = document.getElementById(positionId);

        var pagerHtml = '<span onclick="' + pagerName + '.prev();" class="pg-normal"> « Prev </span> | ';
        for (var page = 1; page <= this.pages; page++)
        pagerHtml += '<span id="pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');">' + page + '</span> | ';
        pagerHtml += '<span onclick="'+pagerName+'.next();" class="pg-normal"> Next »</span>';

        element.innerHTML = pagerHtml;
    }
}

HTML 文件

<html version="-//W3C//DTD HTML 4.01 Transitional//EN">

<head>
<style type="text/css">
.pg-normal {
color: black;
font-weight: normal;
text-decoration: none;
cursor: pointer;
}
.pg-selected {
color: black;
font-weight: bold;
text-decoration: underline;
cursor: pointer;
}
</style>

<script type="text/javascript" src="pagination.js"></script>
</head>

<body>
<form action="" method="get" enctype="application/x-www-form-urlencoded">
<table id="results">
<tr>
<th>#</th>
<th>field</th>
</tr>
<tr>
<td>1</td>
<td>rajeev</td>
</tr>
<tr>
<td>2</td>
<td>ramesh</td>
</tr>
<tr>
<td>3</td>
<td>Rahul</td>
</tr>
<tr>
<td>4</td>
<td>Bala</td>
</tr>
<tr>
<td>5</td>
<td>Teamjhon</td>
</tr>
<tr>
<td>6</td>
<td>Robin</td>
</tr>
<tr>
<td>7</td>
<td>Sambha</td>
</tr>
<tr>
<td>8</td>
<td>Arjun</td>
</tr>
<tr>
<td>9</td>
<td>Satyan</td>
</tr>
<tr>
<td>10</td>
<td>Singapore</td>
</tr>
</table>
<div id="pageNavPosition"></div>
<div><input type="submit" onclick="alert('Hey this is just a sample!'); return false;" /> <input type="reset" /></div>
</form>

<script type="text/javascript"><!--
var pager = new Pager('results' 3);
pager.init();
pager.showPageNav('pager' 'pageNavPosition');
pager.showPage(1);
//--></script>

</body>
</html>

Please try this...

Javascript code pagination.js file

function Pager(tableName, itemsPerPage) {
    this.tableName = tableName;
    this.itemsPerPage = itemsPerPage;
    this.currentPage = 1;
    this.pages = 0;
    this.inited = false;
    this.showRecords = function(from, to) {
        var rows = document.getElementById(tableName).rows;
        // i starts from 1 to skip table header row
        for (var i = 1; i < rows.length; i++) {
            if (i < from || i > to)
            rows[i].style.display = 'none';
            else
            rows[i].style.display = '';
        }
    }

    this.showPage = function(pageNumber) {
        if (! this.inited) {
            alert("not inited");
            return;
        }
        var oldPageAnchor = document.getElementById('pg'+this.currentPage);
        oldPageAnchor.className = 'pg-normal';

        this.currentPage = pageNumber;
        var newPageAnchor = document.getElementById('pg'+this.currentPage);
        newPageAnchor.className = 'pg-selected';

        var from = (pageNumber - 1) * itemsPerPage + 1;
        var to = from + itemsPerPage - 1;
        this.showRecords(from, to);
    }

    this.prev = function() {
        if (this.currentPage > 1)
            this.showPage(this.currentPage - 1);
    }

    this.next = function() {
        if (this.currentPage < this.pages) {
            this.showPage(this.currentPage + 1);
        }
    }

    this.init = function() {
        var rows = document.getElementById(tableName).rows;
        var records = (rows.length - 1);
        this.pages = Math.ceil(records / itemsPerPage);
        this.inited = true;
    }

    this.showPageNav = function(pagerName, positionId) {
        if (! this.inited) {
            alert("not inited");
            return;
        }
        var element = document.getElementById(positionId);

        var pagerHtml = '<span onclick="' + pagerName + '.prev();" class="pg-normal"> « Prev </span> | ';
        for (var page = 1; page <= this.pages; page++)
        pagerHtml += '<span id="pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');">' + page + '</span> | ';
        pagerHtml += '<span onclick="'+pagerName+'.next();" class="pg-normal"> Next »</span>';

        element.innerHTML = pagerHtml;
    }
}

HTML file

<html version="-//W3C//DTD HTML 4.01 Transitional//EN">

<head>
<style type="text/css">
.pg-normal {
color: black;
font-weight: normal;
text-decoration: none;
cursor: pointer;
}
.pg-selected {
color: black;
font-weight: bold;
text-decoration: underline;
cursor: pointer;
}
</style>

<script type="text/javascript" src="pagination.js"></script>
</head>

<body>
<form action="" method="get" enctype="application/x-www-form-urlencoded">
<table id="results">
<tr>
<th>#</th>
<th>field</th>
</tr>
<tr>
<td>1</td>
<td>rajeev</td>
</tr>
<tr>
<td>2</td>
<td>ramesh</td>
</tr>
<tr>
<td>3</td>
<td>Rahul</td>
</tr>
<tr>
<td>4</td>
<td>Bala</td>
</tr>
<tr>
<td>5</td>
<td>Teamjhon</td>
</tr>
<tr>
<td>6</td>
<td>Robin</td>
</tr>
<tr>
<td>7</td>
<td>Sambha</td>
</tr>
<tr>
<td>8</td>
<td>Arjun</td>
</tr>
<tr>
<td>9</td>
<td>Satyan</td>
</tr>
<tr>
<td>10</td>
<td>Singapore</td>
</tr>
</table>
<div id="pageNavPosition"></div>
<div><input type="submit" onclick="alert('Hey this is just a sample!'); return false;" /> <input type="reset" /></div>
</form>

<script type="text/javascript"><!--
var pager = new Pager('results' 3);
pager.init();
pager.showPageNav('pager' 'pageNavPosition');
pager.showPage(1);
//--></script>

</body>
</html>
溺渁∝ 2024-07-24 06:31:59

当然有可能。 一种实现可能是在考虑行高/字体大小的同时计算文本行数。

Sure it's possible. One implementation might be to count lines of text while considering line-height/font-size.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文