gpt4 book ai didi

Javascript: <script src=jquery...只有当条件为真时

转载 作者:数据小太阳 更新时间:2023-10-29 04:31:32 25 4
gpt4 key购买 nike

我正在使用 javascript 进行开发,并且只想在验证条件时插入脚本。

例如:

var a = exampleVariable;

if (a == conditionIwant) {
// append to head:
<script src="http://code.jquery.com/jquery-1.5.js"> </ script>
}; //or something like this

如何仅在条件为真时插入 jquery.js?

最佳答案

这真的很简单:

if(somethingIsTrue) {
var sc = document.createElement('script');
sc.src = 'http://code.jquery.com/jquery-1.5.js';
sc.type = 'text/javascript';
if(typeof sc['async'] !== 'undefined') {
sc.async = true;
}
document.getElementsByTagName('head')[0].appendChild(sc);
}

关于Javascript: &lt;script src=jquery...只有当条件为真时,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/5819625/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com