任何人都可以帮我创建Angular和Typescript
中侧导航栏的切换按钮导航
if(jarray != null){
Toast.makeText(getContext(), "not null", Toast.LENGTH_LONG).show();
}else{
Toast.makeText(getContext(), " null", Toast.LENGTH_LONG).show();
}
答案 0 :(得分:1)
$("#menu-toggle").click(function(e) {
e.preventDefault();
$("#wrapper").toggleClass("toggled");
});
这是转换为打字稿后的代码。
(是的,它是一样的。但你显然是在问错误的问题。)
这是你可以根据屏幕大小显示/隐藏角度的方法 - Angularjs hide and show according to screen size responsive