加载外部js文件时如何动态替换代码?

时间:2018-07-04 15:06:18

标签: javascript jquery

动态加载外部js文件时,我想替换js文件中的一些html内容。我该怎么办?

示例:

js文件中的代码如下:

<img src="path1">

我想更改img标签的src路径。我曾经使用jquery来做到这一点,但是在加载js文件之前,找不到img标签。

1 个答案:

答案 0 :(得分:-1)

您可以在加载DOM之后立即更改图像的src。有了Jquery,有很多方法可以做到这一点。请尝试以下操作之一:

$(function(){
  //execute whatever you want with the DOM loaded
});


$(document).ready(function(){
  // executes when HTML-Document is loaded and DOM is ready
});


$( window ).load(function() {
  // executes when complete page is fully loaded, including all frames, objects and images
});

在所有这些解决方案中,您都可以访问所需的元素,在本例中为img元素。