文章列表
//fusionchart无法传入类似'aa'的字符串参数,会引起单引号冲突,因此改用%26apos;代替单引号
setElement1.setAttribute("link","JavaScript:showRuntimeByDaytime(%26apos;"+daytime+"%26apos;,1);");
与后台交互使用的是原生的ajax方法,尝试过使用jquery提供的ajax,但是没有生效。
这种初始化方式可以初始化free版本和企业版本,已经测试过。
JS部分:
//初始化图表
function getXmlHttp() {
return window.XMLHttpRequest ? new XMLHttpRequest() : new ActiveXObject("Microsoft.XMLHTTP");
}
function initChart(){
var xmlhttp = getXmlHttp( ...
简单的demo
//全选
function checkall(obj){
var isCheck=false;
if(obj.checked){
isCheck=true;
}else{
isCheck=false;
}
var checkboxList=document.getElementsByName("ck");
for(var i=0;i<checkboxList.length;i++){
checkboxList[i].checked=isC ...
对 iframe onload事件的监听,本来是用来动态改变iframe的背景色的,结果没用到。
function showIframe(url){
var type=getOs();
var contentIframe=document.getElementById('auditRuleManagerIframe');
//先隐藏
contentIframe.style.display="none";
contentIframe.src=url;
if(type=="ie"){
/ ...