我有一个输出多个复选框的表单。
当我至少有1个复选框检查时,表单运行良好。
我想显示一条警告信息是没有复选框检查 当用户点击提交时。 我怎么能做到这一点?
import datetime
time1_array = [3, 12,4.8]
time2_array = [5, 8, 34.87]
time1 = datetime.datetime.strptime("-".join(map(str, time1_array)), "%H-%M-%S.%f")
time2 = datetime.datetime.strptime("-".join(map(str, time2_array)), "%H-%M-%S.%f")
print time2-time1
>>> 1:56:30.070000
答案 0 :(得分:0)
假设您正在使用jQuery,您可以执行以下操作:
// when the form submit event occurs
$("#confrm_key").submit( function( event ) {
// if we don't have any checked checkboxes
if ( $(this).find(":checked").length === 0 ) {
// throw an alert
alert( "Warning message here." );
// and stop the submission event
event.preventDefault();
}
} );