在HTML网页中打开chm格式的帮助文件

在HTML网页中打开chm格式的帮助文件

1. window.showHelp("../jscript56.chm");

2.F1用自己的帮助文件
<body onhelp="window.open('mk:@MSITStore:http://www.blueidea.com/user/qswh/css2.chm::/css2/c_wordwrap.html');return false;">

<body onhelp="window.open('its:http://www.blueidea.com/user/qswh/css2.chm::/css2/c_wordwrap.html');return false;">

例:
<body onhelp="window.open('its:file://C:/Documents%20and%20Settings/Administrator/ 桌面/aa.chm::/html/jsoriJScript.htm');return false;">
<input type="button" onClick='window.showHelp("aa.chm");' value="help">
<a href="#" onClick='window.showHelp("aa.chm");'>help</a>

 

 

我看了你的 在HTML网页中打开chm格式的帮助文件 在纯html下可以;
按这种方式在tomcat 下打开是乱码的...
在windows下用Process pro=Runtime.getRuntime().exec("hh.exe "+path.replaceAll(ch1,ch2)+"help.chm");可以
但在unix下就可以了
现在我的代码是放在unix下的,想通过一js代码实现打开一帮助文件help.chm,你您能帮我解决一下吗?

你可能感兴趣的:(html)