使用也使用延迟加载类型功能的Javascript将图像添加到页面

时间:2014-12-11 17:12:56

标签: javascript javascript-events

我尝试使用一些Javascript将BBB和McAfee徽标添加到我们的结帐页面,进入结算和付款部分。我编写了一行有效的代码,但是只有在刷新页面时它才有效。由于所有活动都发生在一个页面中,并且每次您点击继续时页面都会重新加载,我不确定为什么我写的内容不起作用。我做错了什么?

     $(文件)。就绪(函数(){     $(" #payment h3")。prepend('#trustIcons1 {position:absolute; right:0; top:-5px;}');     })();

1 个答案:

答案 0 :(得分:0)

我认为你需要预先添加html或样式或两者(现在你添加一个字符串)

$(document).ready(function(){ $("#payment h3").prepend('<div id="trusticons">your other css</div>'); })(); 

$(document).ready(function(){ $("#payment h3").prepend('<style>your css</style>'); })();

$(document).ready(function(){ $("#payment h3").prepend('<style>your css</style><div id="trusticons">your other css</div>'); })();