摘要:Windows Registry Editor Version 5.00 ; Change Extension's File Type [HKEY_CURRENT_USER\Software\Classes\.jpg] @="PhotoViewer.FileAssoc.Tiff" ; Change
阅读全文
摘要:参考:https://www.cnblogs.com/dogdogwang/p/6927473.html 在实际的项目中,我们需要在项目中集成富文本编辑器,而kindeditor作为一款优良的编辑器,在项目中或多或少都会用到! 1.实际效果图 使用方法: 1.首先下载Kindeditor编辑器,我这
阅读全文
摘要:/**扩展 JQuery 在光标所在位置插入指定字符 * */ (function($){ $.fn.extend({ insertAtCaret: function(myValue){ var $t=$(this)[0]; if (document.selection) { this.focus(
阅读全文
摘要:/** * 获取选中内容 * @param id * @returns {string|*} */ function getSelectText(id) { var t = document.getElementById(id); if (window.getSelection) { if (t.s
阅读全文
摘要:// 验证 let str = "123【空】345【空】789【空】0"; let res = str.replace(/(.*)【空】/,'$1'); console.log(res); // 123【空】345【空】7890
阅读全文
摘要://获取 行号为 index的数据 var d= $("#selectTab").datagrid('getRows')[index] ; $("#selectFrm").get(0).reset(); $("#dlg").dialog({ title: '修改会议信息' }); $("#dlg")
阅读全文
摘要:1. 在 startup 文件中配置 public void ConfigureServices(IServiceCollection services) { services.Configure<FormOptions>(x => { x.ValueLengthLimit = int.MaxVal
阅读全文