我有这个用于打开新窗口的java脚本,但我不知道如何将用户输入传递到带有页面扩展名的窗口中。
此代码将打开如下页面:https://xxx.mycompany.com/download/21373076
但我想打开这样一个新窗口:使用variable.html< - 我需要添加window.open脚本的“.html”结尾。
javascript:(function(){var%20TKnum=prompt("Enter%20TK%20Number","");if%20(SRnum!=null)%20var%20w=window.open('https://xxx.mycompany.com/download/'+SRnum%20,'_blank');})();; <-- How to add .html after '+SRnum%20'
谢谢