0

FAQ 中给出的脚本列出了基于 URL 传递颜色框参数的以下脚本,但 Dreamweaver 说此行存在脚本错误:

对于 (i = 0; i < hashes.length; i++) {

任何人都可以看到有什么问题吗?

function getParameters(){ var settingsObject = {}, hash, hashes = location.search.substring(1).split(/&/), i;

for (i = 0; i &lt; hashes.length; i++) {
    hash = hashes[i].split('=');
    settingsObject[hash[0]] = hash[1];
}
return settingsObject;

}

4

0 回答 0