Facebook Sharer
选择您要替换的背景颜色:
【农历新年】背景图片:
个性化设定
 注册  找回密码
123
返回列表 发新帖
楼主: meijie85
打印 上一主题 下一主题

有没有人会做这个guest book。用html+css+javascript+php来做!

[复制链接]

45

主题

2

好友

1166

积分

黄金长老

Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8

21#
发表于 2011-6-18 09:58 PM |只看该作者
回复 20# leon_lcl


    我的if condintion有什么问题吗?请指教。我是gender没反应不会出message alert。然后submit 后要怎么把那些资料post上网像这http://www.wwjdm.org/~site/Scrip ... &H_H=1755292850
好多都不会哦。大大有facebook吗?直接在FB聊方便吗?我的是meei kiat see。


回复

使用道具 举报

7

主题

1

好友

5108

积分

一流名嘴

Rank: 12Rank: 12Rank: 12

22#
发表于 2011-6-20 11:33 AM |只看该作者
回复  leon_lcl
    这先不谈,我现在这个function都不懂哪里有错,gender没反应。能办忙看下吗?
<!DOCTYPE>
<html>
   <head>
              <title>Meei Kiat.com</title>
   </head>
<script type='text/javascript'>

function formValidator(){

        var name=document.getElementById('name');
        var age=document.getElementById('age');
        var gender=document.getElementById('gender');
        var email=document.getElementById('email');
        
        if(isAlphabet(name, "Please enter your name!")){
                if(isNumeric(age, "Please enter your age!")){
                        if(madeSelection(gender, "Please select your gender!")){
                                if(emailValidator(email, "Please enter your email!")){
                                        return true;
                                }
                        }
                }
        }

        return false;

}

function notEmpty(elem, helperMsg){
        if(elem.value.length == 0){
                alert(helperMsg);
                elem.focus();
                return false;
        }
        return true;
}

function isNumeric(elem, helperMsg){
        var numericExpression = /^[0-9]+$/;
        if(elem.value.match(numericExpression)){
                return true;
        }
        else        
        {
        alert(helperMsg);
        elem.focus();
        return false;
        }
}

function isAlphabet(elem, helperMsg){
        var alphaExp = /^[a-zA-Z]+$/;
        if(elem.value.match(alphaExp)){
                return true;
        }else{
                alert(helperMsg);
                elem.focus();
                return false;
        }
}

function madeSelection(elem, helperMsg){
        if(elem.value == "Please Choose"){
                alert(helperMsg);
                elem.focus();
                return false;
        }
        else
        {
        return true;
        }
}

function emailValidator(elem,helperMsg){
        var emailExp = /^[\w\-\.\+]+\@[a-zA-Z0-9\.\-]+\.[a-zA-z0-9]{2,4}$/;
        if(elem.value.match(emailExp)){
                return true;
        }
        else
        {
        alert(helperMsg);
        elem.focus();
        return false;
        }
}
</script>
        
<form onsubmit='return formValidator()'>
Name: <input type='text' id='name'/><br/>
Age: <input type='text' id='age'/><br/>
Gender: <select id='gender'>
        <option>Please Choose</option>
        <option>Male</option>
        <option>Female</option>
</select><br/>
Email: <input type='text' id='email'/><br/>
<input type='submit' value='Submit'/>
</form>

</html>
meijie85 发表于 2011-6-18 03:46 PM



selector 的 option 没有設置 value,所以樓主的 element.value 是取不到值的


回复

使用道具 举报

45

主题

2

好友

1166

积分

黄金长老

Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8Rank: 8

23#
发表于 2011-6-22 10:11 AM |只看该作者
回复 22# Super-Tomato
请问大大会slides show 多图显示吗?我做的这个另一个不会运作,哪里有错?

<table border="1">
<tr>
<td>
    <img  src="picture/pic1.jpg" id="1"   style="FILTER: revealTrans(duration=2,transition=16);  cursor:pointer;display:none">
    <img  src="picture/pic2.jpg" id="2"   style="FILTER: revealTrans(duration=2,transition=17);  cursor:pointer;display:none">
    <img  src="picture/pic3.jpg" id="3"   style="FILTER: revealTrans(duration=2,transition=18);  cursor:pointer;display:none">
    <img  src="picture/pic4.jpg" id="4"   style="FILTER: revealTrans(duration=2,transition=19);  cursor:pointer;display:none">
</td>
<td>
    <img  src="picture/pic5.jpg" id="1"   style="FILTER: revealTrans(duration=2,transition=16);  cursor:pointer;display:none">
    <img  src="picture/pic6.jpg" id="2"   style="FILTER: revealTrans(duration=2,transition=17);  cursor:pointer;display:none">
    <img  src="picture/pic7.jpg" id="3"   style="FILTER: revealTrans(duration=2,transition=18);  cursor:pointer;display:none">
    <img  src="picture/pic8.jpg" id="4"   style="FILTER: revealTrans(duration=2,transition=19);  cursor:pointer;display:none">
   
</td>
</table>
   <script language="javascript">
    function $(_sId) {
        return document.getElementById(_sId);
    }
    var speed=5000;
    var setid=null;
    var auto="true";
    function galleryplay(divs,a,mtime){
        if(divs=="0")return false;   
        var start=3;
        if(auto=="true")
        {
            start = a-1;
            speed = mtime;
            setid = null;   
            var loop = function(){        
                ids = divs.split(",");                       
                for (var i=0;i<ids.length; i++)
                {           
                     $(ids).style.display='none';
               
                }                                   
                $(ids[start]).filters.revealTrans.Transition = Math.floor(Math.random() * 23);
                $(ids[start]).filters.revealTrans.apply();
                $(ids[start]).filters.revealTrans.play();
                $(ids[start]).style.display='';
               
                setid=setTimeout(loop,speed);
                start++;
                if(start==ids.length){
                    start=0;                 
                }
            };loop();   
        }
    }
    galleryplay('1,2,3,4',1,5000);
    </SCRIPT>
    </div>


回复

使用道具 举报

7

主题

1

好友

5108

积分

一流名嘴

Rank: 12Rank: 12Rank: 12

24#
发表于 2011-6-26 12:13 AM |只看该作者
回复  Super-Tomato
请问大大会slides show 多图显示吗?我做的这个另一个不会运作,哪里有错?




...
meijie85 发表于 2011-6-22 10:11 AM



樓主不要一味着抄別人提供的代码,必須明白 galleryplay('1,2,3,4',1,5000); 参數的用意


回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

JBTALKS.CC |联系我们 |隐私政策 |Share

GMT+8, 2025-1-26 04:51 PM , Processed in 0.091393 second(s), 20 queries .

Powered by Discuz! X2.5

© 2001-2012 Comsenz Inc.

Ultra High-performance Dedicated Server powered by iCore Technology Sdn. Bhd.
Domain Registration | Web Hosting | Email Hosting | Forum Hosting | ECShop Hosting | Dedicated Server | Colocation Services
本论坛言论纯属发表者个人意见,与本论坛立场无关
Copyright © 2003-2012 JBTALKS.CC All Rights Reserved
合作联盟网站:
JBTALKS 马来西亚中文论坛 | JBTALKS我的空间 | ICORE TECHNOLOGY SDN. BHD.
回顶部