如何设置自己的网站,免费做店招的网站,公司名字logo设计,土豆网网站开发源代码网页实现输入固定前缀#xff0c;以及打开数量打开固定数量的网页 废话不多说直接上代码 今天客户说要写一个小需求#xff1a; 我这边需求是帮我编写一个小程序或者是批处理文件#xff0c;实现尾数连续的链接打开
例如http://abc1.com,后续依次自动打http://abc2.com,http… 网页实现输入固定前缀以及打开数量打开固定数量的网页 废话不多说直接上代码 今天客户说要写一个小需求 我这边需求是帮我编写一个小程序或者是批处理文件实现尾数连续的链接打开
例如http://abc1.com,后续依次自动打http://abc2.com,http://abc3.com废话不多说直接上代码
!DOCTYPE html
html langen
headmeta charsetUTF-8meta nameviewport contentwidthdevice-width, initial-scale1.0title连续打开网页优化版/title
/head
bodyinput typetext idbase_url placeholder请输入链接前缀格式http://abc stylewidth: 300pxinput typenumber idnum_of_links placeholder请输入需要打开的数量button onclickopenLinks()打开链接/buttonscriptfunction openLinks() {var base_url document.getElementById(base_url).value;var num_of_links parseInt(document.getElementById(num_of_links).value);for (var i 1; i num_of_links; i) {var url base_url i .com;window.open(url);}}/script
/body
/html