Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我load()用来将内容插入div容器,其中一些内容需要使用jQuery进行样式设置。
load()
div
有什么方法可以使用外部脚本加载内容而无需将<script>标签放入内容本身?
<script>
使用 css 应该可以工作,您只需声明会影响加载数据的 css 样式,然后在渲染时考虑它们,而无需执行任何其他操作
如果你需要用 javascript 来做,你可以使用 load 函数的完整回调:
$('#yourDiv').load('content.html', function() { $("#yourDiv").find("#someDynamicallyLoadedElement").height(500); // do whatever you want here });