我是 iPhone 的初学者。我想在 webview 中调用 javascript 页面。我用过像这样的脚本
<script src="http://www.infochoice.com.au/modules/applets/flash9/Source/Scripts/swfobject.js" type="text/javascript"></script>
<div id="ich_flashcontent"></div>
<script type="text/javascript">
var ich_calc_detect = new SWFObject("http://www.infochoice.com.au/modules/applets/flash9/Source/Applets/600/LoanRepayments.swf", "ich_LoanRepayments", "595", "330", "9", "#000");
ich_calc_detect.addVariable("splash_location", "http://www.infochoice.com.au/modules/applets/flash9/Source/Applets/splash_icon.swf");
ich_calc_detect.addVariable("info_location", "http://www.infochoice.com.au/distributions/flash9/58/info/");
ich_calc_detect.addVariable("xml_location", "http://www.infochoice.com.au/distributions/flash9/58/");
ich_calc_detect.addVariable("core_location", "http://www.infochoice.com.au/modules/applets/flash9/Source/Applets/StGeorge/");
ich_calc_detect.addParam("AllowScriptAccess", "always");
ich_calc_detect.addParam("wmode", "transparent");
ich_calc_detect.useExpressInstall('http://www.infochoice.com.au/modules/applets/flash9/Source/Applets/expressinstall.swf');
ich_calc_detect.write("ich_flashcontent");
</script>
请提供适用于我的应用程序的任何建议和源代码。