$('input[type="text"][name="catch_very"]').focus(function() {
if($(this).attr('value') == 'Please Verify That You're Human') {
$(this).attr('value') = '';
}
});
当用户点击选择框时,我正在尝试删除“请验证您是人”字样,有人知道我该怎么做吗?
由于 萨姆
答案 0 :(得分:3)
更改
$(this).attr('value') = '';
到此:
$(this).attr('value', '') ;