本文介绍了我可以在客户端JavaScript中使用临时文件吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! 我正在写一个带有一些JavaScript的html页面,它将一个网页读取到客户端临时文件中,然后重新格式化,然后提交 与浏览器显示的URL相同的文件,通过locate.replace。 如果包含脚本的html页面来源,我可以做到这一切 在客户端计算机上,但是当包含脚本的同一个html页面是 on时,不知道如何访问 客户端临时文件网络主机。如何访问客户端临时文件? 或 有什么方法可以使用数组代替文件实现 同样的事情?如果是这样,我如何提交数组作为浏览器的URL 来显示? 谢谢, Don ----- =通过Newsfeeds.Com发布,未经审查的Usenet新闻= ----- http://www.newsfeeds.com - 世界排名第一的新闻组服务! ----- ==超过100,000个新闻组 - 19种不同的服务器= ----- 解决方案 访问客户端的文件系统(通过FSO)会引发ActiveX安全性 警告。 br /> 您可以使用JavaScript构建网页,然后使用window.open()。 例如;请注意自动换行。 < html> < head> < title> myPage.htm< / title> < script type =" text / javascript"> function myPage(){ var html =" < html>< head>< title>我的网页< / title>< / head>" ;; html + ="< body> Hello World< / body>< ; / html>" ;; var wind = window.open(); wind.document.write(html); } < / script> < / head> < body onload =" myPage()"> < / body> < / html> window.open可以接受参数以获得更好的控制。 访问客户端的文件系统(通过FSO)会引发ActiveX安全性警告。 你可以使用JavaScript构建一个Web页面然后使用window.open()。 例如;请注意自动换行。 < html> < head> < title> myPage.htm< / title> < script type = " text / javascript"> 函数myPage(){ var html ="< html>< head>< title> My Page< / title>< / head>" ;; html + ="< body> Hello World< / body>< / html>" ;; var wind = window.open(); wind.document。写(html); } < / script> < / head> < body onload =" myPage()"> < / body> < / html> window.open可以接受参数以便更好地控制。 - --- =通过Newsfeeds.Com发布,未经审查的Usenet新闻= ----- http ://www.newsfeeds.com - 世界排名第一的新闻组服务! ----- ==超过100,000个新闻组--19个不同的服务器! = ----- 访问客户端的文件系统(通过FSO)会引发ActiveX安全性警告。 你可以使用JavaScript构建一个Web页面然后使用window.open()。 例如;请注意自动换行。 < html> < head> < title> myPage.htm< / title> < script type = " text / javascript"> 函数myPage(){ var html ="< html>< head>< title> My Page< / title>< / head>" ;; html + ="< body> Hello World< / body>< / html>" ;; var wind = window.open(); wind.document。写(html); } < / script> < / head> < body onload =" myPage()"> < / body> < / html> window.open可以接受参数以便更好地控制。 - --- =通过Newsfeeds.Com发布,未经审查的Usenet新闻= ----- http ://www.newsfeeds.com - 世界排名第一的新闻组服务! ----- ==超过100,000个新闻组--19个不同的服务器! = ----- I''m writing an html page with some JavaScript that reads a web pageinto a client-side temp file, then reformats it, then submits thatsame file as a URL to the browser for display, via "locate.replace".I can do all this if the html page containing the script originateson the client machine, but don''t know how to get access to aclient-side temp file when the same html page containing the script ison a web host. How do I get access to a client-side temp file?orIs there some way I can use an array instead of a file to achieve thesame thing? If so, how do I submit the array as a URL for the browserto display?Thanks,Don-----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World!-----== Over 100,000 Newsgroups - 19 Different Servers! =----- 解决方案Access to the client''s file system (via FSO) raises an ActiveX securitywarning.You can use JavaScript to construct a Web page then use window.open().For example; watch for word-wrap.<html><head><title>myPage.htm</title><script type="text/javascript">function myPage() {var html = "<html><head><title>My Page</title></head>";html += "<body>Hello World</body></html>";var wind = window.open();wind.document.write(html);}</script></head><body onload="myPage()"></body></html>window.open can accept parameters for greater control.Access to the client''s file system (via FSO) raises an ActiveX securitywarning.You can use JavaScript to construct a Web page then use window.open().For example; watch for word-wrap.<html><head><title>myPage.htm</title><script type="text/javascript">function myPage() { var html = "<html><head><title>My Page</title></head>"; html += "<body>Hello World</body></html>"; var wind = window.open(); wind.document.write(html);}</script></head><body onload="myPage()"></body></html>window.open can accept parameters for greater control.-----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World!-----== Over 100,000 Newsgroups - 19 Different Servers! =-----Access to the client''s file system (via FSO) raises an ActiveX securitywarning.You can use JavaScript to construct a Web page then use window.open().For example; watch for word-wrap.<html><head><title>myPage.htm</title><script type="text/javascript">function myPage() { var html = "<html><head><title>My Page</title></head>"; html += "<body>Hello World</body></html>"; var wind = window.open(); wind.document.write(html);}</script></head><body onload="myPage()"></body></html>window.open can accept parameters for greater control.-----= Posted via Newsfeeds.Com, Uncensored Usenet News =----- http://www.newsfeeds.com - The #1 Newsgroup Service in the World!-----== Over 100,000 Newsgroups - 19 Different Servers! =----- 这篇关于我可以在客户端JavaScript中使用临时文件吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
09-06 00:30