0

我有一个生成字符串的工作表单,并通过单击按钮将字符串放置在文本区域框中。

我还有一个重置按钮,假设重置所有字段,但不重置带有字符串的文本区域。

这是我的一些代码。

HTML:

<form>

<!--some more code and inputs-->

</tbody> </table> </p> <p> <input value="Generate URL" onclick="createURL1();" type="button">


<input name="result" size="70" class="clearit" type="text" ></input>
<input type="button" value="Add The Link" onClick="addtext();"></p>
<textarea id="t5" style="width:600px;" name="outputtext" ></textarea><br><br>


 </p>  </td> </tr> </tbody> </table>

<input  type="reset" value="Clear" id="reset" ></input>

JavaScript:

$(document).ready(function(){
    $('#reset').on('click',function(e){
        e.preventDefault();
        $('.clearit').val("");
    });

});

我提供了我想要重置类(clearit)的所有输入,并且重置按钮有一个 ID:reset。我不想重置的唯一字段有不同的 ID。

它应该有效,但它没有..请帮助:)

4

1 回答 1

0

使用这个javascript函数并排除你不想重置的id元素,你可以通过左输入空白或下拉等于-1来指定重置方式,它适用于IE和fire fox tesed

 function resetLabels()
    {
        //mainForm is the name of form
        var cells = document.mainForm.elements;
        for (var i= 0; i < cells.length; i++) {
             if(cells[i].name !='txtName')//for example to not reset by name 
            cells[i].value='';

   //    cells[i].className = '';
   //    cells[i].style.color = 'black';
   // or cells[i].value='-1' for drop down
   // or cells[i].name= '';  name and id to compare and exclude specific elements
   // or cells[i].id= '';    
   //and i suggest to name like txt... and ddl...to                                  
   //know the type by name and id or just check the type
   //of element by using  cells[i].type


        }


    }
于 2012-05-01T09:15:41.160 回答