我有来自AWeber(注册表单)的HTML代码,我把它放在我的自定义表单中。问题是,当我把它放在我的自定义表单中时,它不会在新选项卡中打开,它会在SAME窗口中打开。 这是我的HTML代码:
import java.util.Scanner;
public class Test {
public static void main(String[]args){
Scanner scan = new Scanner(System.in);
System.out.print("Give a positive #: ");
int input = scan.nextInt();
int consecutive= 0;
int lastvariable=0;
while(input>0){
System.out.print("Give a positive #: ");
int a = scan.nextInt();
if(a==lastvariable)
consecutive++;
if (a<0)
input = 0;
a = lastvariable;
}
System.out.println("Consecutive #'s: " + consecutive);
}
&GT;
答案 0 :(得分:0)
尝试使用以下内容替换当前的表单开始标记:
<form method="post" class="af-form-wrapper" accept-charset="UTF-8" action="https://www.aweber.com/scripts/addlead.pl" target="_blank" >
我刚将target =“_ new”更改为target =“_ blank”,因为target =“_ new”无效,浏览器可能不知道如何对此采取行动。