javascript - 将 Div 的内容放在顶部

标签 javascript jquery html css

我想创建一个包含整数值的输入。如果单击 caret-up 按钮,输入值将增加 1,如果单击 cater-down 按钮,输入值将减少 1。

我的问题是 down-caret 的样式是错误的。我想将 down-caret 放在 blue 矩形的顶部。

目前,down-caret 位于 div 的底部。下面是当前输出的图像。

enter image description here

我尝试了几种方法,例如 flex、绝对位置等。但这些是红色 div 和蓝色 div 的重叠区域。

// add a javascript function to change the value of the input when clicking the caret
// get the input element
var input = document.getElementById("remind_number");
// function to modify the value of the input
function addValue(value) {
  input.value = parseInt(input.value) + parseInt(value);
}
/* style the qty div to display both input and buttons div in the same line*/
.qty {
  width: 250px;
  height: 50px;
}

/* add the wrapper div to easy styling the element*/
#remind_number_wrapper {
  width: 230px;
  float: left;
  height: 100%;
}

/* adjust the height of the input to fit out the div parent, it easier to see*/
#remind_number_wrapper input {
 width: 220px;
 height: 100%;
}

/* style the buttons div to display input and caret in the same line*/
#buttons {
  width: 20px;
  height: 100%;
  float: right;
  display: block;
}

/* style the action button to fit the height of the div*/
.action_btn {
  height: 25px;
}

#plus_remind {
    font: 33px/1 Arial,sans-serif;
    border: 1px solid red;
    cursor: pointer;
}

#minus_remind {   
    font: 33px/1 Arial,sans-serif;
    border: 1px solid blue;
    cursor: pointer;
}
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet"/>
<div class="qty">
   <div id="remind_number_wrapper">
     <input placeholder="Remind Number" name="remind_number" class="form-control" type="text" id="remind_number" value="0">
   </div>
   <div id="buttons">
     <!-- add className 'action_btn' to easier to style button in the same place-->
     <div class="action_btn" id="plus_remind" onclick="addValue(1)">
        <!-- change the fas to fa for the right class of font-awesome -->
        <i class="fa fa-caret-up"></i>
     </div>
     <div class="action_btn" id="minus_remind" onclick="addValue(-1)">
        <i class="fa fa-caret-down"></i>
     </div>
   </div>
</div>

最佳答案

您的描述有点不清楚,如果我理解正确,请查看下面的示例,看看它是否是您想要的。

* {
    box-sizing: border-box;
}
.qty {
    position: relative;
}
.new {
    position: absolute;
    right: 0;
    top: 0;
}
#plus_remind, #minus_remind {
    margin: 0;
    height: 24px;
    width: 22px;
    font: 33px/1 Arial,sans-serif;
    cursor: pointer;
}
#plus_remind {
    border: 1px solid blue;
}
#minus_remind {   
    border: 1px solid red;
}
input {
    height: 48px;
    font-size: 1.5rem;
    margin: 0px;
    padding: 0px;
    line-height: 1.5rem;
    width: 100%;
}
<div class="qty">
   <input placeholder="Remind Number" name="remind_number" class="form-control" type="text" id="remind_number" value="25">
   <div class="new">
     <div onclick="document.getElementById('remind_number').value-=-1;" class="" id="plus_remind">
        <i class="fas fa-caret-up"></i>
     </div>
     <div onclick="document.getElementById('remind_number').value-=1;" class="" id="minus_remind">
        <i class="fas fa-caret-down"></i>
     </div>
  </div>

关于javascript - 将 Div 的内容放在顶部,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58501481/

相关文章:

javascript - _googWcmGet 回调无法通过具有动态电话号码的 GTM 工作

javascript - 拖放三 Angular 形

javascript - 没有 Javascript(仅 CSS)是否可以做同样的事情(悬停效果)?

html - 表格列文字大于列宽?

html - 如何使用 CSS 定位跟随 HTML 元素?

javascript - 在 HTML 中使用 *ngfor 指令解析 JSON

javascript - 将 html 内容从 .js 文件移动到 .html 文件的最佳方法 - 已完成

jquery - 使用 jQuery 检测最宽的单元格

browser - 有什么方法可以迁移到 HTML 5 并仍然保证多浏览器兼容性?

javascript - 在javascript中进行for循环暂停并更新html页面