我将HTML索引编码为在屏幕变窄时将导航栏替换为按钮。但是,单击该按钮时,导航栏元素不会按预期显示。希望有人能帮助我。
如果我将相同的导航条形码复制粘贴到w3schools bootstrap模拟器(http://www.w3schools.com/bootstrap/tryit.asp?filename=trybs_navbar_collapse&stacked=h)中,当我点击按钮(窄屏幕)时,元素会显示出来
这是我正在谈论的一段代码:
#include <windows.h>
#include <stdlib.h>
#include <string.h>
#include <tchar.h>
int WINAPI WinMain(HINSTANCE hInstance, HINSTANCE hPrevInstance, LPSTR lpCmdLine, int nCmdShow)
{
MessageBox(NULL, TEXT("Test_text"), TEXT("Message Test"), MB_ICONINFORMATION | MB_OKCANCEL);
return 0;
}