我想通过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');
});
});