我正在尝试编写一些对我有帮助的 jquery 代码
$(slider).appendTo('html')
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
<html>
<head>
<title>Test slider</title>
</head>
<body>
<div id=html name=slider>slider here</div>
</body>
</html>
编辑:我试试这个,但它也不起作用
<script src="http://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="http://code.jquery.com/ui/1.10.3/jquery-ui.min.js"></script>
<link rel="stylesheet" href="code.jquery.com/ui/1.10.3/themes/smoothness/jquery-ui.css"; />
<script>
$(function() {
$( "#slider" ).slider();
});
</script>
<html>
<head>
<title>Test slider</title>
</head>
<body>
<div id=html name=slider>slider here</div>
</body>
</html>