This topic has been archived. It cannot be replied.
-
工作学习 / IT技术讨论 / I assigned a value to varaible q with Java script: var q=3 then I want to export the value of q to a Java Applet by using
<PARAM name="qqqq" value=?>,How to do it? Thanks a lot.
-waokool(waokool);
2002-7-18
(#643046@0)
-
document.write('<PARAM name="qqqq" value="' + q + '">');
-bingle(bingle);
2002-7-18
(#643186@0)
-
I tried <PARAM name="qqqq" value="' + q + ''"> ,but it doesn't work. I don't need Document.write here. So any other solution for this problem? Thanks a lot !!!
-waokool(waokool);
2002-7-18
(#645006@0)