我想从 url 示例中获取 FilePath 参数: http ://www.example.com/index.html?FilePath=LetsGo
浏览它会将它传递给 html flash 播放器脚本(“LetsGo”将播放而不是“autoload”):
<html>
<body><.......
<object classid="123456...." codebase="http://123457" id="test" height="300" align="middle" width="300">
<param name="allowFullScreen" value="true">
<param name="movie" value="123.swf">
<param name="FlashVars" value="MP3=autoload.mp3&JPG=autoload.jpg&repeats=200">
<embed src="123.swf" allowfullscreen="true" name="MP3JPG" flashvars="MP3=autoload.mp3&JPG=autoload.jpg&repeats=200" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" height="300" align="middle" width="300">
</object><......
</html>
我怎样才能正确地做到这一点?
非常感谢,
本茨。