如何使用javascript做出重置效果?

JavaScript017

如何使用javascript做出重置效果?,第1张

思路:本题要想实现用javascript做出重置效果需要用到JavaScript实现重置表单(reset)的方法。

例子:

<form id="form1">

<input type="text" id="name"/>

<input type="button" value="这个用JavaScript清除" onclick="document.getElementById('form1').reset()"/>

<input type="reset" value="这个是Form清除" />//reset()重置

</form>

function f_cancel() {

    LG.closeCurrentTab = null

}

要取消这个函数,只要将它的引用设置为null就行了,这样它就会被资源回收器回收。