我的客户将我们下面的 JS 代码放在他的网站中,<head>
并抱怨我们的标签没有触发。以下是来自客户端的示例代码:
<html>
<head>
<script type="text/javascript">
function create() {
try {
var baseURL = "https://serv2ssl.vizury.com/analyze/analyze.php?account_id=VIZVRM1125";
var analyze = document.createElement("iframe");
analyze.src = baseURL;
var node = document.getElementsByTagName("script")[0];
node.parentNode.insertBefore(analyze, node);
} catch (i) {
}
}
var existing = window.onload;
window.onload = function() {
if (existing) {
existing();
}
create();
}
</script>
</head>
<body onload="javascript:clientfunction();">
<script type="text/javascript">
function clientfunction()
{
//client code is replcad here
document.write("Hello testing");
}
</script>
</body>
</html>
在页面加载clientfunction()
调用时,我们的create()
函数没有触发。
请任何人都可以帮助我为什么我们的标签没有触发,这个问题的替代解决方案是什么?