Привет Вот мой код для отображения окна с предупреждением:
var answer = window.confirm ("The registration you have entered is illegal for the uk roads. By clicking ok you are accepting full resposibility for this plate and agreeing to use it for offroad use only.");
if (answer) {
//Tell them its a show plate
$('#numberplateyellow').append(platetext);
$('#numberplatewhite').append(platetext);
$('#illegal').append('Show Plate Not Road Legal');
}else{
$('#illegal').empty();
}
}else{
//Its A Legal Plate
$('#numberplateyellow').append(platetext);
$('#numberplatewhite').append(platetext);
}
Я хочу, чтобы windows.confirm содержал флажок, который говорит: проверьте здесь, если вы согласны с условиями.
Как мне добавить флажок в window.confirm?
Спасибо