我是 jquery 的新手,谁能告诉我如何在我的 html 文件中使用外部 jquery 显示和图像。
我希望我的 html 干净并加载外部 jquery 文件中提到图像路径的图像。
我的 jquery 文件会像这样 testjquery.js
// url to load the image (which i dont know ,whats the code for it)
并在我的 html 文件中。
<html>
<head>
<script type="text/javascript">
(function() {
var test = document.createElement('script');
test.type = 'text/javascript';
test.async = true;
test.src = 'testquery.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(test, s);
test.onload=function(){
// function to load the external image
}
})();
</script>
</head>
<body>
</body>
</html>
提前致谢!