0

テキストボックスの内容をクリアするために、誰でもここで助けてもらえますか。JavaScriptを使用して画像をクリックすると、テキストボックスの内容をクリアしようとしました

<input name="newKey" id="newKey" type="text" value="helo" size="38" maxlength="45"/>
<span class="btnClr" id="clear" onclick=clearThis("newKey"></span>


function clearThis(target){
    target.value= "";
}
4

4 に答える 4

1

ID で GET ELEMENT を使用..... http://jsfiddle.net/Q7fRB/230/

function clearThis(target){


        document.getElementById(target).value= "";
    }
于 2013-07-30T07:57:35.603 に答える
0

働くフィドル

$("#clear").click(function(){
    $("#newKey").val('');
});
于 2013-07-30T07:56:20.813 に答える
0

あなたは単にこれを行うことができます

function clearThis(target){
    document.getElementById(target).value = "";

    }
于 2013-07-30T07:58:24.367 に答える