Getting an Applet Parameter:获得一个applet参数

<script>function StorePage(){d=document;t=d.selection?(d.selection.type!='None'?d.selection.createRange().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('http://www.365key.com/storeit.aspx?t='+escape(d.title)+'&u='+escape(d.location.href)+'&c='+escape(t),'keyit','scrollbars=no,width=475,height=575,left=75,top=20,status=no,resizable=yes'));keyit.focus();}</script>

String s = getParameter("p");

Here is a sample HTML file containing a value for the parameter

\meta{p}.

<applet code=AppletClassName width=100 height=100>

<param name=p value="some text">

</applet>

你可能感兴趣的:(html,C++,c,C#)