我有一个 python cgi 脚本,可以在<head>
. 我希望在 python 脚本和正文中进一步发生缓慢的 python 计算之前加载 javascript。我有两个显示问题的简单 hello world 警报。第一个在 python 计算之前打印出来,这就是我想要的。但是,位于 中的第二个$(function(){...})
直到 python 计算之后才会加载。我拥有的实际代码包含(不仅仅是一个 hello world 警报)一个简单的 jquery 下拉工具栏。如何让 jquery 在 python cgi 脚本的其余部分之前加载?
print('<head>')
<...jquery source...>
print('''
<script type="text/javascript">
alert( "Hello World! 1" ); <-------This prints out before python below
$(function(){
alert( "Hello World! 2" ); <-------This prints out after python below
});
</script>
''')
print('</head>')
**<...lots of slow python calculations...>**