我有一个带有 jQuery 和 JavaScript 的 HTML 页面。我在 head 标签中导入我需要的库:
<link rel="stylesheet" href="http://code.jquery.com/ui/1.8.18/themes/base/jquery-ui.css" type="text/css" media="all" />
<link rel="stylesheet" href="http://static.jquery.com/ui/css/demo-docs-theme/ui.theme.css" type="text/css" media="all" />
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.8.18/jquery-ui.min.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/external/jquery.bgiframe-2.1.2.js" type="text/javascript"></script>
<script src="http://jquery-ui.googlecode.com/svn/tags/latest/ui/minified/i18n/jquery-ui-i18n.min.js" type="text/javascript"></script>
<script src="http://maps.googleapis.com/maps/api/js?sensor=false&libraries=places" type="text/javascript"></script>
然后我在里面导入一些带有jQuery的html:
$('#cliente').click(function(){$('#container').load('/clienti/cliente');});
但是加载的页面内的 jQuery 不起作用。(我确信代码是正确的,就像单独工作一样)。
我需要做点什么吗?我试图在脚本之前导入导入页面中的库(头脑中),但没有工作。我没有其他想法!