- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我了解如何在 input
中使用 img
,但我不知道如何使 img
成为按钮或 href .这是我目前所拥有的:
input {
border: none;
padding: 10px;
width: 128px;
border-radius: 5px;
background: url('https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png') no-repeat;
background-size: 35px 35px;
border:0;
padding-left:30px;
background-color: rgb(18,41,73);
border-color: rgb(18,41,73);
font-size: 12px;
}
<input type="text" placeholder="my text"></input>
如何使 img
箭头成为单击 img
时的箭头?
最佳答案
您可以使用相对和绝对定位元素来做到这一点,如下面的代码片段所示。我在此代码段中使用了按钮,您可以按照相同的步骤将其更改为链接并使用 href。
input {
border: none;
padding: 10px;
width: 128px;
border-radius: 5px;
border:0;
padding-left:30px;
background-color: rgb(18,41,73);
border-color: rgb(18,41,73);
font-size: 12px;
}
#in_image{
position:absolute;
border:none;
background:none;
outline:none;
}
<div style="position:relative">
<button id="in_image" onclick="alert('I am a button')"><img src="https://cdn4.iconfinder.com/data/icons/ionicons/512/icon-arrow-right-b-128.png" width="35" height="35" /></button>
<input type="text" placeholder="my text" />
</div>
关于html - 输入里面有一个 href/button img,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25896658/
我遇到过这个 html: 上面的html和这个有什么区别: 最佳答案 来自MDN page on the tag : 对于 type 的属性标签,可能的值是: 提交:按钮将表单数据提交给服务器
Button button= (Button) findViewbyID(R.id.button); 和 Button button = new Button(this); 有什么区别? 最佳答案 有
我是一名优秀的程序员,十分优秀!