动态表单制作问题
发布网友
发布时间:2022-04-12 11:08
我来回答
共2个回答
热心网友
时间:2022-04-12 12:37
我来搞定!确定文件存在,就可以打开了!
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>测试</title>
</head>
<body>
<SCRIPT LANGUAGE="JavaScript">
<!--
function checkinput(){
if (regfrm.text.value=="") {
alert("文件名不能为空")
regfrm.text.focus();
return false; }
var a="http://www.xxx.com/";
var b=regfrm.text.value;
var c=a+b+".htm";
var d="你是要打开"+c+"网页吗?";
alert(d); //这行确认你可以不要,
regfrm.action=c;
}
//-->
</SCRIPT>
<form onsubmit="return checkinput()" name=regfrm method=post>
请输入:<input type="text" size=19 name="text" class="style4"><input type="submit" value="提交信息">
</form>
热心网友
时间:2022-04-12 13:55
<Script language="Javascript">
function Open(){
var URL=document.getElementById("URL").value
if (URL=="" || URL=="网址为空!"){
document.getElementById("URL").value="网址为空!";
document.getElementById("URL").style.color="red";
document.getElementById("URL").style.backgroundColor="#FFFF90";
}else{
URL="http://www.×××.com/"+URL+".htm";
window.open(URL,"_self");
}
}
</Script>
<input type="text" name="URL" id="URL" onFocus="this.style.color='';this.style.backgroundColor='';this.value='';">
<input type="Button" value="提交" onClick="Javascript:Open();">