- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有大量系统生成的 CSS 规则适用于 input.button
.它们的结构是这样的:
input.button {
/* CSS properties here */
}
我有一个表单提交按钮,定义如下:
<input id="submitBtn" type="submit" value="Subscribe" />
我想申请所有input.button
关于此的 CSS submitBtn
同样,但无需手动修改所有原始 CSS(也将其应用于 submitBtn
),或手动复制 input.button
的所有 CSS 规则对于 submitBtn
那么有没有办法直接利用 input.button
的 CSS? ,并将其应用于提交按钮,无需更改/添加/修改/删除任何 CSS 代码 ?
最佳答案
如果你能改变css那就改变
input[type=submit]
如果你可以改变按钮然后改变
<input id="submitBtn" type="submit" class="button" value="Subscribe" />
关于html - 在不更改 CSS 的情况下在提交按钮上应用 input.button CSS?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17743742/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!