私は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>
前もって感謝します!