Как установить CSS, чтобы соответствовать коробке? - PullRequest
0 голосов
/ 22 июня 2011

прекрасный.

Я написал скрипт для соответствия box.но я не знаю, как настроить css для соответствия box и кнопку ok и отменить ........ как установить ....

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.4.2.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.4/jquery-ui.min.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Control Panel</title>
</head>
<body>
<button class=" "   id="id2" >Start Thermonuclear War</span></button>
 <div title="Why so serious?" id="id3" style="display:none;">
<p> You are about to start a war. 
<p>Click OK to confirm. Click Cancel to cancel this action.</p>
</div>
</body>
<script type="text/javascript" >
$('#id2').click(function(event){
if($(this).data('propagationStopped')){

$(this).data('propagationStopped', false);
return true;
}else{

event.stopImmediatePropagation();

$('#id3').dialog({

width: 600,
buttons: {
"Ok": function() { 
$(this).dialog("close"); 
$('#id2').data('propagationStopped', true);

$('#id2').triggerHandler(event);
 location.href = 'index.php';
}, 
"Cancel": function() { 
$(this).dialog("close"); 
return false; 
} 
}
});

return false;   
}
});
</script>

</html>

1 Ответ

0 голосов
/ 22 июня 2011

Смотрите здесь: http://jqueryui.com/demos/dialog/ в разделе Theming.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...