设置文本框的值-jQuery

前端之家收集整理的这篇文章主要介绍了设置文本框的值-jQuery 前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想通过jquery将文本框的值设置为null.我试过了

 onclick="$('#c_album').val('TEST VALUE');" at the submit button

$('input#c_album').val('hello'); - in the script section

适当的协助

谢谢
戴夫

[编辑]-这是我正在使用的代码

$('#submit').bind('click',(function(){
        $('#src_Box').val('hello');
    });
最佳答案
    $(function(){
       $('#btnSubmit').bind('click',function(){
           $('input#c_album').val('hello');
// OR
           $('#c_album').val('hello');
// OR
           $('input[id=c_album]').val('hello');
       });
   });
原文链接:https://www.f2er.com/jquery/530952.html

猜你在找的jQuery相关文章