总的来说,我在编程方面还很陌生,所以我的问题可能很容易回答,甚至很愚蠢,但我来了:
在我的站点中添加新按钮(或任何元素)时,此按钮不会以正确的样式显示。我究竟做错了什么?
代码:
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Test</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css" />
<script>
$(function() {
$( "#accordion" ).accordion();
});
$(function() {
$( "button" )
.button()
.click(function() {
$('#panel').append("<button>OK?</button>");
});
});
</script>
</head>
<body>
<button>Go!</button>
<div id="accordion">
<h3>Heading 1</h3>
<div>
<p id="panel">
Text
</p>
</div>
</div>
</body>
</html>