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>
具体使用介绍请查看官方文档,聪明的你一定会的
转载于:https://my.oschina.net/u/817904/blog/1590660
上一篇: 自己写代码对比工具
下一篇: Python-使用pyplot模块绘图