欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

js文件对比工具mergely

程序员文章站 2022-07-13 21:52:07
...

如果能力不错可以直接去阅读官方文档资料,再厉害的请去git

首先去下载需要的资料。

<!DOCTYPE html>
<html lang="zh">
<head>
<script src="https://cdn.bootcss.com/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript" src="../lib/codemirror.min.js"></script>
<link type="text/css" rel="stylesheet" href="../lib/codemirror.css" />
<script type="text/javascript" src="../lib/mergely.js"></script>
<link type="text/css" rel="stylesheet" href="../lib/mergely.css" />
<script type="text/javascript">
	$(document).ready(function() {
		$('#compare').mergely({
			cmsettings : {
				readOnly : false,
				lineNumbers : true
			},
			lhs : function(setValue) {
				setValue('the quick red fox\njumped over the hairy dog');
			},
			rhs : function(setValue) {
				setValue('the quick brown fox\njumped over the lazy dog');
			}
		});
	});
</script>
</head>
<body>
	<div id="compare"></div>
</body>
</html>

js文件对比工具mergely

具体使用介绍请查看官方文档,聪明的你一定会的

转载于:https://my.oschina.net/u/817904/blog/1590660