我有一个asp.net网页,其中包含5到6个下拉列表和几个texbox以及CKEditor .net控件。
我有一个重置按钮,我试图在点击它时清除下拉列表,文本框和ckeditor文本。
以下是我的javascript清除表单数据
function resetForm(){
this.form.reset();
//document.getElementById("frmNew").reset();
}
这是清除ckEditor文本的代码
function resetCkEditor() {
var myinstances = [];
for (var i in CKEDITOR.instances) {
CKEDITOR.instances[i].name;
alert(CKEDITOR.instances[i].name);
CKEDITOR.instances[i].updateElement();
CKEDITOR.instances[i].setData('');
}
}
我尝试将两个代码合并到一个函数中,但只有一个正在运行。重置表单或清除CKEditor。但我无法将所有内容重置为默认值。
有没有办法做到这一点?任何帮助将受到高度赞赏。