我有一个表格,我希望填写所有字段。如果未填写某个字段,我想显示该字段的红色背景和一条消息。
\$('#id_form').blur(function()
{
if( $(this).val().length == 0 ) {
$(this).parents('p').addClass('warning');
}
print $q->start_form (-method => 'post', -action => "add.pl", -id => 'id_form');
print $q->legend({-class => "ui-widget-header ui-corner-all"},"");
print $q->input ({-id => 'name', -name => 'name',-type => 'text' , -size => 20, -style => ' margin-left:300 px' },"<br>");
我不确定这是正确的方法!