0

嗨,我有几个文本输入框,我有一个清除按钮,它们都共享相同的名称,我希望使用一个函数将它们全部清除,这可以在没有 ID 的情况下完成,因为这占用了太多空间我的代码到目前为止看起来像这样:

var Id;
var Name;
function Check(id, name)    {
Id = document.getElementById(id);
Name = document.getElementById(name);
if (Id.value == id) {
    Name.checked = true;
    alert('correct');
    return;
} else  {
    Name.checked = false;
    alert('incorrect');
}
}
function ClearP()   {
document.getElementsByName("input").innerHTML = '';
}

我的 html 看起来像这样

<div class="content">
                    <div class="main_story" style="margin-bottom:20px;">
                        <p class="sentence">the word to go here -></p>
                        <input id="here" name="input" class="sentence" type="text" size="7">
                        <p class="sentence">is here</p>
                        <button style="float:right" id="correct" onClick="Check('here', 'aShow');">Correct?</button>
                        <input style="float:right" name="aShow" id="aShow" type="checkbox" value="">
                    </div>
                    <div class="main_story" style="margin-bottom:20px;">
                        <p class="sentence">the word to go here -></p>
                        <input id="you" name="input" class="sentence" type="text" size="7">
                        <p class="sentence">is you</p>
                        <button style="float:right" id="correct" onClick="Check('you', 'bShow');">Correct?</button>
                        <input style="float:right" name="bShow" id="bShow" type="checkbox" value="">
                    </div>
                    <button onClick="ClearP();">Clear</button>
                </div>

非常感谢所有帮助 :) 谢谢 :)

4

3 回答 3

2
function ClearP(){
    var inputs = document.getElementsByTagName("input");
    for(var i=0;i<inputs.length;i++)
        inputs[i].value = '';
}
于 2012-06-17T14:30:35.240 回答
0

如何使用jQuery和类似的东西:

$('[name="input"]').val("");
于 2012-06-17T14:51:18.760 回答
0

给他们所有人另一个班级(也许是“可清除”之类的东西?),然后找到并清除该班级的所有项目。

于 2012-06-17T14:30:21.557 回答