var obj;
try {
obj = document.createElement("object");
obj.id = "GameObject1";
obj.name = "JavaGameObject1";
obj.setAttribute("classid", "clsid:72E6F181-D1B0-4C22-B0D7-4A0740EEAEF5");
obj.width = 640;
obj.height = 526;
var loginurl = document.createElement("param");
loginurl.setAttribute("name", "loginurl");
loginurl.setAttribute("value", "xx.xx.xx.xx:8080");
obj.appendChild(loginurl);
//append a lot of params here...
document.body.appendChild(obj);
} catch (e) {
alert("Exception:" + e.message);
}
我在javascript中定义了一个html对象,我想在'document.body.appendChild(obj);'之后加载jar,但是当页面加载时,什么也没发生。
你能告诉我为什么吗?