1.用正则表达式验证用户名
Document
服务器托管网
解释该正则:
-
[a-zA-Z0-9_-]
:匹配任意字母、数字、下划线或破折号。 -
{3,16}
:限制用户名的长度在6到16个字符之间。
2.跨域postmessage
需要用到两个虚拟主机
子页面:
2023
2024.security.pw
window.addEventListener('message', (event) => {
服务器托管网 if (event.origin === 'http://2024.oupeng.pw') {
const cookieData = event.data;
//处理cookieData
console.log('Receive message from parent:', cookieData);
window.parent.postMessage('child message', '*');
}
})
父页面:
iframe
window.onload = function() {
document.cookie = 'sessionid=oupeng'
const cookieData = document.cookie
window.frames[0].postMessage(cookieData, 'http://2024.security.pw/');
}
//添加一个监听事件处理子页面的返回消息
window.addEventListener('message', (event) => {
if(event.origin === 'http://2024.security.pw')
console.log('Received message from child:', event.data);
})
验证:在子页面里接受到返回值和发送消息到子页面,实现跨域
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
DLang 与 C 语言交互 很难受的是,这部分的文档太少了,根本没有 教程向 的文章。所以我写了此文以做分享。 本文原址链接(防止机器搬运):https://www.cnblogs.com/jeefy/p/17499441.html 阅读提示:请保证如下条件…