我正在尝试将html文件附加到div
中marked solution in this thread helped me to add html file to my page
但我希望加载的内容能够拉伸并适合div。 怎么做到这一点?
我无法编辑附加的html文件,因为它是在实际情况下动态生成的。
有人可以帮助我吗?
贝洛是我的解决方法
<html lang="en">
<head>
<meta charset="utf-8">
<title>jQuery UI Resizable - Animate</title>
<link rel="stylesheet" href="http://code.jquery.com/ui/1.11.4/themes/smoothness/jquery-ui.css">
<script src="http://code.jquery.com/jquery-1.10.2.js"></script>
<script src="http://code.jquery.com/ui/1.11.4/jquery-ui.js"></script>
<link rel="stylesheet" href="/resources/demos/style.css">
<style>
#resizable { width: 150px; height: 150px; padding: 0.5em; }
#resizable h3 { text-align: center; margin: 0; }
.ui-resizable-helper { border: 1px dotted gray; }
</style>
<script>
$(function() {
$( "#resizable" ).resizable({
animate: true
});
$( "#resizable" ).draggable({
animate: true
});
});
</script>
<script>
debugger;
$(function(){
$("#includedContent").load("b.html");
});
</script>
</head>
<body>
<div id="resizable" class="ui-widget-content">
<h3 class="ui-widget-header">Animate</h3>
<div id="includedContent"></div>
</div>
</body>
</html>
&#13;