随笔分类 - JavaScript & JQuery
摘要:use wss in node.js app creare certificate then, this is my server.js
阅读全文
摘要:mac上启动web服务 第一种 Node.js server npm install http-server -g http-server . -p 8000 第二种 安装 npm install -g node-static 启动 static -p 80 或:nohup static -p 80
阅读全文
摘要:nodejs在服务器的安装 node安装 yum install nodejs 注意,缺少组件就用npm install安装 随便写个小程序 后台执行 nohup node index.js &
阅读全文
摘要:os模块在electron中的使用兼IP地址获取 直接看代码吧 注意,这里就要说一下,引入os,即不是import,也不是require,就是window.require。
阅读全文
摘要:使用vue-cli初始化一个electron项目 安装vue cli npm install -g @vue-cli 注意,一定要带@,不建议不带@的命令了,那是老版本,创建完毕是找不到create命令的。 安装之后的路径:/usr/local/lib/node_modules/@vue/cli 如
阅读全文
摘要:关闭Eslint 确认vuecli的版本 vue -V 我的是5.0.4 接下来就是在vue.config.js中配置lintOnSave,
阅读全文
摘要:你需要一个jquery.media插件,http://malsup.com/jquery/media/ 然后: 111Watch my movie!222 更多使用参考官方文档。 视频的话,如果不在乎是否支持html5特性的,直接用HTML5方案,如下:
阅读全文
摘要:故障现象: 当使用百度编辑器ueditor上传大容量视频或大容量图片的时候,编辑器报“http请求错误”的解决方法详解; 原因分析: 目前很多CMS整合了百度的ueditor编辑器,但是上传稍微大一点的文件就会报错, 解决方案 1:修改相对应的ueditor\asp\config.json编辑器文件夹中的配置文件config.json在其中查找"videoMaxSize": 1024000000,...
阅读全文
摘要:前后台必须一致, 后台: public static void SetCookie(string cookieName, string value, int expiresDays){ var newCookie = new HttpCookie(cookieName); newCookie.Value = value; newCookie.Expires = DateTime....
阅读全文
摘要:如下: @{ ViewBag.Title = "OrderList"; Layout = "~/Views/Shared/_Layout.cshtml"; } 订单管理 订单编号: ...
阅读全文
摘要:此乃服务器不支持这种文件,因此需要修改一下配置,让IIS支持这种文件的访问 下增加节点:
阅读全文
摘要:1.4.3版本样式过滤处理如下: if (domUtils.isEmptyNode(me.body)) { //alert("xx"); //me.body.innerHTML = '' + (browser.ie ? '' : '') + ''; me.body.innerHTML = (browser.ie ? '' : ' ');} enterTag: '', ar...
阅读全文
摘要:一:预加载 首先,我们需要引用JS, 其次,修改img的格式为: 收藏 注意,data-original中的path才是图片真是的地址, 最后,我们需要: $(function () { $("img").lazyload({ effect: "fadeIn" }); }); 那么,问题来了,动态加载的图片是否也可以这么处理呢。原理上,是的,但是要注意,aja...
阅读全文
摘要:ajax:$.ajax({ type: "post", datatype: "json", contentType: "application/x-www-form-urlencoded; charset=UTF-8", url: "/ProductTypeAndCat/AddType", asyn...
阅读全文
摘要:无法SetContent是因为 txtContent还未完全初始化,故, editor.ready(function () { }); 使用上面的函数可解决此问题。
阅读全文
摘要:ajaxSubmit发现正文无内容, ajaxFileUpload发现无上传内容, 嗯,你只是忘记了 html 中控件的 name 没有指定,这哥们不认 id 的。
阅读全文
摘要:DateTime的日期到了客户端为:"/Date(1346818058450+0800)/"; 转吧: var renderTime = function (dateTime) { if (!!!dateTime) return ""; var date = new Date(parseInt(dateTime.replace("/Date(", "").replace...
阅读全文
摘要:url传中文,乱码,即便charset为 UTF-8, $.ajax({ type: "POST", cache: false, url: "/ProductTypeAndCat/AddType?typeName=" + typeName, contentType: "application/x-www-form-urlencoded; charset=UTF-8", ...
阅读全文
摘要:在某些版本浏览器下ajaxFileUpload上传文件会提示下载, 1:为什么? 可以观察到,即便返回 JsonResult 在返回的头中也没有任何消息体,直接理解为文本了。 2:解决方案 前端: function uploadImg(fimgi) { if ($("#fimg" + fimgi).val().length > 0) { //alert($("#fimg" +...
阅读全文