如何将'add document'移动到图书馆的顶部?
How to move 'add document' to the top of the library?
我想将 'add document' 按钮移到顶部。
参考 https://imgur.com/a/QzmbHcp
请指教。
将下面的代码添加到列表视图页面的内容编辑器 web 部件中以实现它。
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#idHomePageNewDocument").closest("table").after($(".ms-listviewtable"));
});
</script>
我想将 'add document' 按钮移到顶部。 参考 https://imgur.com/a/QzmbHcp 请指教。
将下面的代码添加到列表视图页面的内容编辑器 web 部件中以实现它。
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#idHomePageNewDocument").closest("table").after($(".ms-listviewtable"));
});
</script>