نیاز به یه کد ساده جاوا برای فرم لوگین

farjadpic

New Member
سلام

من یه کد ساده جاوا میخوام
که برای یه فرم لوگین ساده مثل زیر
PHP:
User: <input type="text" value="0" style=" width:150px;" /><br />
Pass: <input type="password" value="0"  style="width:150px;"/><br/>
<input type="button" value="send" style=" background-color:silver;color:blue;"/>

که برای user و pass خاصیتی بزاره ک وقتی تو فیلد کلیک شد و چیزی ننوشت یه پیام کناره فیلد بیاد که یه چیزی وارد کن

دکمه ارسال هم نمی خوام کار کنه

همین:sad:
 

mas_oo_d

New Member
HTML:
[LEFT]<form onsubmit="return checkForm()" name="formOne">
	<input type="text" name="userName" />
	<input type="password" name="password" />
	<br/>
	<input type="submit" onclick="return checkForm()" />
</form>
	<p id="response">
	</p>[/LEFT]

کد:
[LEFT]<script type="text/javascript">
	function checkForm(){
		if(document.formOne.userName.value == false || document.formOne.password.value = false){
			document.getElementById('response').innerHTML = "fill the form";
		if(document.formOne.userName.value == false){
			document.getElementById('response').innerHTML = "fill the userName field";
			document.formOne.userName.focus();}
		else{
			document.getElementById('response').innerHTML = "fill the Password field";
			document.formOne.password.focus();}
		return false;
		}

	else {
		return true;
		}
</script>[/LEFT]
 
آخرین ویرایش:

جدیدترین ارسال ها

بالا