我是 jQuery 的新手。下面的代码是什么意思?尤其是第一部分。
$(".locale-en-us", $iframe).append($('script').attr('type', "text/javascript").attr('src', "https://mytestbox/testsite/test.js"));
我是 jQuery 的新手。下面的代码是什么意思?尤其是第一部分。
$(".locale-en-us", $iframe).append($('script').attr('type', "text/javascript").attr('src', "https://mytestbox/testsite/test.js"));
它将向您的元素添加脚本标记,该元素具有 $iframe 元素中存在的类 locale-en-us
<div class="locale-en-us">
<script src="https://mytestbox/testsite/test.js" type="text/javascript"></script>
</div>
上面的代码会找到类名为“locale-en-us”的元素,然后添加一个 Iframe 元素。在 iframe 元素中添加带有 set type="text/javascript" 和 src="https://mytestbox/testsite/test.js" 的脚本。
我认为第一部分的意思是:从 jQuery 变体“iframe”中选择类为“locale-en-us”的元素。
剩下的代码就很容易理解了:添加js文件!