Tag: 重置

如何使用.reset()方法使用jQuery重置表单

我有工作代码,可以重置我的表单,当我点击一个重置button。 但是,当我的代码变得越来越长,我意识到它不再工作了。 <div id="labels"> <table class="config"> <thead> <tr> <th colspan="4"; style= "padding-bottom: 20px; color:#6666FF; text-align:left; font-size: 1.5em">Control Buttons Configuration</th> </tr> <tr> <th>Index</th> <th>Switch</th> <th>Response Number</th> <th>Description</th> </tr> </thead> <tbody> <form id="configform" name= "input" action="#" method="get"> <tr><td style="text-align: center">1</td> <td><img src= "static/switch.png" height="100px" width="108px"></td> <td id="small"><input style="background: white; color: black;" type="text" value="" id="number_one"></td> <td><input style="background: white; […]

你能解释一下“git reset”在纯英文中的作用吗?

我看到有趣的post解释有关git reset微妙之处。 不幸的是,我读得越多,看起来就越不完整。 我来自SVN背景,Git是一个全新的范例。 我很容易,但Git更技术性。 我认为git reset很接近于hg revert ,但似乎有差异。 那么git reset做什么的? 请包括以下详细的解释: 选项 – –soft , – –soft和–merge ; HEAD使用的奇怪符号,如HEAD^和HEAD~1 ; 具体的使用情况和工作stream程; 对工作副本, HEAD和你的全球压力水平的影响。

用jQuery重置多阶段表单

我有一个标准的重置button,因此编码forms: <input type="reset" class="button standard" value="Clear" /> 麻烦的是,表单是多阶段sorting的,所以如果用户填写了一个阶段然后返回,那么当点击清除button时,各个字段的“记住”值将不会被重置。 我想附加一个jQuery函数来遍历所有的领域,并清除他们“手动”会做的伎俩。 我已经在表单中使用了jQuery,但是我们只是想加快速度,所以我不知道如何去做,除了单独引用每个字段的ID,这似乎不是很有效。 TIA的任何帮助。