1<html xmlns="http://www.w3.org/1999/xhtml"> 2<head> 3<meta http-equiv="Content-Type" content="text/html; charset=gb2312" /> 4<title>My First Script</title> 5<script type="text/javascript"> 6function test() { 7 var result = confirm("Please make sure."); 8 if (result == true) { 9 alert("You choose YES! Great!"); 10 } else { 11 alert("What a bitch you are !"); 12 } 13} 14</script> 15</head> 16<body> 17 <input type="button" value="Click Me!" onClick="test();" /> 18</body> 19</html>
$(document).ready(function(){dp.SyntaxHighlighter.HighlightAll('code');});
原文链接: http://blog.csdn.net/poechant/article/details/6985125