前端小控制項(輸入項的增刪改與位置移動)

2021-08-03 09:11:40 字數 1059 閱讀 1750

最近做乙個小控制項,比較簡單,可以動態增加輸入框,刪除,修改輸入框內容並且實現輸入框的上移與下移,其中用到了jquery外掛程式,畢竟jquery操縱dom比yu原生的要簡單一下,話不多說,直接上**吧

charset="utf-8" />

title>

src="../js/jquery-1.9.0.min.js">

script>

.subinput

.subinput

:focus

style>

var currentindx=0;

var dataarr=[,,

]$(function

()) function

render

()

}function

add()

dataarr.push(obj); //新增空的資料

render(); //重新渲染dom結構

}function

del()

}function

up()

}function

down

() }

function

inputchange

(e) function

inputclick

(e)

script>

head>

onclick="add()">增加button>

onclick="del()">刪除button>

onclick="up()">上公升button>

onclick="down()">下降button>、

id="contentdiv"

style="width: 200px;height: 300px;background: gray;margin-top: 20px;">

div>

body>

html>

mongodb的增刪改查 飛奔的小GUI

增加 db.collection name.insert刪除 db.collection name.remove更新 db.collection name.update查詢 db.collection name.find pretty 操作例項 1.建立資料庫use test2 2.顯示當前所有資料...

如何使用React實現簡易的輸入框增 刪 改操作?

import react,from react 首先先寫他的構造方法 建構函式 constructor input框輸入事件 通過事件源的方式拿到輸入框內的輸入的值 所有的事件都有預設引數 event 事件 事件上有乙個事件屬性 target handelinput event 新增事件 hande...

後浪小萌新Python 物件屬性的增刪改查

python類物件的屬性是支援增 刪 改 查 查 獲取屬性值 物件.屬性 獲取物件指定屬性的值 getattr 物件,屬性名 獲取物件指定屬性的值 getattr 物件,屬性名,預設值 獲取物件指定屬性的值 如果屬性不存在不會報錯,返回預設值 增 改物件.屬性 值 如果屬性存在就是修改物件屬性的值 ...