方法一: CInternetSession::GetCookie This member function implements the behavior of the Win32 function InternetGetCookie, as described in the Windows SDK. static BOOL GetCookie( LPCTSTR pstrUrl, LPCTSTR pstrCookieName, LPTSTR pstrCookieData, DWORD d…
javascript获取属性有两种方式,点或者中括号: var obj={} obj.x=1 console.log(obj.x)//1 第一种方式,x是字面量 try{ console.log(obj[x])//ReferenceError: x is not defined 相当于调用obj."undefined" }catch(e){ console.log("err:"+e) } x="str" console.log(obj[x]) x…