19-09-2008, 12:31
|
|
|
חבר מתאריך: 21.04.08
הודעות: 32
|
|
עזרה JS
הנה הקוד עם התוספות שאמרת לי
קוד:
<script language="javascript">
<!--- hide
function open_site()
{
var name_site = prompt("enter a site url", " ");
if (name_site)
{
var fix_name = fixname(name_site);
var new_window = open(fix_name, "new_window", "menubar,resizeable");
}
}
function fixname(name_site)
{
var first_seven = name_site.substring(0,7);
first_seven = first_seven.toLowerCase();
if (first_seven != "http://")
{
name_site = "http://" + name_site;
}
return name_site;
}
// end hide --->
</script>
<a href="javascript:void(0)" onClicke="open_site();">open site</a>
אני מוסיף את הקוד שהעתקתי מהתרגיל, זה קוד שעובד
קוד:
</br></br>
<script language="JavaScript">
<!-- hide me
function goThere()
{
var the_url = prompt("where can I take you?", "");
if (the_url)
{
var good_url = fixURL(the_url);
var new_window = open(good_url,"new_window","menubar,resizeable");
}
}
function fixURL(the_url)
{
var the_first_seven = the_url.substring(0,7);
the_first_seven = the_first_seven.toLowerCase();
if (the_first_seven != 'http://')
{
the_url = "http://" + the_url;
}
return the_url;
}
// show me -->
</script>
<a href="javascript:void(0)" onClick="goThere();">להיכן מיועדות פניך</a>
שמתי שני סקריפטים הראשון לא עובד זה מה שאני כתבתי, השני עובד זה העתקתי ממקור הדף ממנו קיבלתי את התרגיל
http://vlib.eitan.ac.il/javascript1...Lesson4_15.html
אתה יכול לעבור עליהם ולהגיד לי מה עשיתי לא טוב??
|