我是初学者!我需要这样的东西:
C:\MyHtmlPage.html "string_that_I_need_to_pass_to_the_javascript_code_inside_MyHtmlPage"
并将“string_that_I_need_to_pass_to_the_javascript_code_inside_MyHtmlPage”放入其中:
var externalstring
有类似的东西吗? 谢谢!
编辑:
我找到了方法! 在DOS命令行中我写道:
start firefox "file:///C:/MyHtmPage.html?externalstring=string_that_I_need_to_pass_to_the_javascript_code_inside_MyHtmlPage"
在javascript中我添加了这个(http://papermashup.com/read-url-get-variables-withjavascript/):
var externalstring = getUrlVars()["externalstring"];
alert(externalstring);
function getUrlVars() {
var vars = {};
var parts = window.location.href.replace(/[?&]+([^=&]+)=([^&]*)/gi,
function(m,key,value) {
vars[key] = value;
});
return vars;
}
谢谢大家的建议! =)
答案 0 :(得分:2)
您可以使用如下查询参数:
C:\MyHtmlPage.html?parm=string_that_I_need_to_pass_to_the_javascript_code_inside_MyHtmlPage
然后,在您的页面javascript中,您可以使用window.location.search
检索parm = xxxx片段并根据需要解析xxx。此格式允许您根据需要传递多个不同的参数。这是将多个参数嵌入URL的通用方法。然后,如果URL来自Web服务器,则可以通过页面中的javascript或服务器解析它们。
答案 1 :(得分:1)
不,但如果您在浏览器中加载它,则可以使用fragment identifier
像这样:
<a href="file:///C:/MyHtmPage.html#string_that_I_need_to_pass_to_the_javascript_code_inside_MyHtmlPage">CLICKY</a>
然后在javascript中:
console.log(window.location.hash);