- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
ion-buttons
有两个问题。
ion-buttons
元素的用法,除了可以从示例中推断出的内容之外,没有任何实际解释。 <ion-header>
<ion-navbar primary>
<ion-buttons start> **// here it starts.**
<button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
</ion-buttons> **//Why does ion-buttons close here?**
<ion-title>
My Page
</ion-title>
<ion-buttons end> **// END here?**
<button ion-button icon-only>
<ion-icon name="search"></ion-icon>
</button>
</ion-buttons> **// then close AGAIN here when there is no companion open tag?**
</ion-navbar>
</ion-header>
最佳答案
<ion-buttons start> **// here it starts.**
start
并不是
ionic 按钮的开始。这里
start
根据其
documentation表示。只是帮助做按钮对齐。
Aligns the element at the start based on platform. iOS goes left, Android is the first item on the right
</ion-buttons> **//Why does ion-buttons close here?**
<ion-buttons start>
就像我们通常喜欢的
<ion-buttons> </ion-buttons>
<ion-buttons end> **// END here?**
end
的意思不是
ion-buttons 的结尾。根据他们的
documentation。只是帮助做按钮对齐。
Aligns the element at the end based on the platform. iOS goes right, Android is the last item on the right
</ion-buttons> **// then close AGAIN here when there is no companion open tag?**
<ion-buttons end>
标签。正如我们通常喜欢的
<ion-buttons> </ion-buttons>
一样。此的
随播打开标记是
<ion-buttons end>
标记。不要混淆标记内的
end
。该
end
确实有助于完成按钮的对齐。除此之外不要思考:)。
关于button - ionic 按钮的开始和结束语法没有意义,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43239916/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!