网页留言板代码

来源:百度知道 编辑:UC知道 时间:2024/05/12 16:51:04
哪个大侠 能根据我的主页做一个留言本的完整代码啊(http://free.e-vnet.com/loselove/)能贴图 不要注册行的也可以 急求啊 我的邮箱yangmin5210@sina.com QQ 342053437

<link href="../../css/user.css" rel="stylesheet" type="text/css">
<script language="JavaScript" src="../../js/common.js"></script>
<script language="JavaScript" src="../../js/ubbcode.js"></script>

<script language="JavaScript">
function formCheck()
{

if (document.theform.nickname.value == "")
{
alert("请填写名字。");
document.theform.nickname.focus();
return false;
}

if (document.theform.content.value == "")
{
alert("请填写留言内容。");
document.theform.content.focus();
return false;
}
theform.Submit.disabled=true;
return true;
}

function showimage()
{
document.images.faceimg.src=face_image[parseInt(document.theform.face.options[document.theform.face.selectedIndex].value)];
}
<