我启动了一个脚本,它开始时为600px x 600px。我现在希望将脚本更改为%而不是px 这是我正在使用的代码
config.width = (typeof config.width === "undefined") ? 600 : config.width;
config.height = (typeof config.height === "undefined") ? 600 : config.height;
如何将600更改为100%,如果将其更改为100%,则会找不到资源。
有什么想法吗?