1:
<script language="javascript" >
function Page_Submit()
{
if(document.news.news_type.value=="")
{
alert('文章类别不能为空');
return false;
}
if(document.news.title.value=="")
{
alert('文章标题不能为空');
return false;
}
if(document.news.name.value=="")
{
alert('发布者不能为空');
return false;
}
var artbody;//文章标题变量
artbody=document.eWebEditor1.getHTML();//获得文章的内容
if(artbody=="")
{
alert('文章内容不能为空');
return false;
}
//将数据给隐藏表单
document.news.artbody.value=artbody;
document.news.submit();//提交表单
}
function Show(){
if(document.news.news_type.value=="")
{
alert('文章类别不能为空');
return false;
}
if(document.news.title.value=="")
{
alert('文章标题不能为空');
return false;
}
if(document.news.name.value=="")
{
alert('发布者不能为空');
return false;
}
var artbody;//文章标题变量
artbody=document.eWebEditor1.getHTML();//获得文章的内容
if(artbody=="")
{
alert('文章内容不能为空');
return false;
}
//将数据给隐藏表单
document.news.artbody.value=artbody;
document.news.action = "show.asp";
document.news.target = "_blank";
document.news.submit();//提交表单
}
</script>
<form action="p_new_upload.asp" onSubmit="Page_Submit();return false;" enctype="multipart/form-data" method="post" name="news">
<input type=submit name=button1 value="提交">
<input type="button" name="Submit2" value="预览" onclick="Show()"/>
</form>
提交虽然掉用到了show()但是调不到这段
if(document.news.news_type.value=="")
{
alert('文章类别不能为空');
return false;
}
if(document.news.title.value=="")
{
alert('文章标题不能为空');
return false;
}
if(document.news.name.value=="")
{
alert('发布者不能为空');
return false;
}
var artbody;//文章标题变量
artbody=document.eWebEditor1.getHTML();//获得文章的内容
if(artbody=="")
{
alert('文章内容不能为空');
return false;
}
但是这段又调到了
//将数据给隐藏表单
document.news.artbody.value=artbody;
document.news.action = "show.asp";
document.news.target = "_blank";
document.news.submit();//提交表单
谁跟我解释下
[此贴子已经被作者于2007-4-6 12:07:49编辑过]