Forum » Izdelava spletišč » JavaScript zunaj HTML
JavaScript zunaj HTML
*wolf* ::
Izdelujem stran in bi rad vključil JavaScript a dokler je zapisan v HTML mi dela, ko pa shranim v zunanjo mapo, pa ga noče prebrati. Zakaj? Lepo prosim za pomoč.
Takole zgleda vključitev:
Takole zgleda vključitev:
<head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title>BitDefender</title> <link rel="stylesheet" type="text/css" href="style1.css" /> <style type="text/css"></style> <script type="text/javascript" src="program.js"></script> </head>
- spremenil: *wolf* ()
*wolf* ::
Evo kodo, samo tale koda meni če jo vklopim v HTML dela normalno; jaz pa bi rad imel zunaj, in jo HTML kliče. Prosim za pomoč.
<script type="text/javascript">
var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""
function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}
function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20
var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000
//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"
//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}
function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}
document.onmousemove=positiontip
</script>
<script type="text/javascript">
var offsetxpoint=-60 //Customize x offset of tooltip
var offsetypoint=20 //Customize y offset of tooltip
var ie=document.all
var ns6=document.getElementById && !document.all
var enabletip=false
if (ie||ns6)
var tipobj=document.all? document.all["dhtmltooltip"] : document.getElementById? document.getElementById("dhtmltooltip") : ""
function ietruebody(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}
function ddrivetip(thetext, thecolor, thewidth){
if (ns6||ie){
if (typeof thewidth!="undefined") tipobj.style.width=thewidth+"px"
if (typeof thecolor!="undefined" && thecolor!="") tipobj.style.backgroundColor=thecolor
tipobj.innerHTML=thetext
enabletip=true
return false
}
}
function positiontip(e){
if (enabletip){
var curX=(ns6)?e.pageX : event.clientX+ietruebody().scrollLeft;
var curY=(ns6)?e.pageY : event.clientY+ietruebody().scrollTop;
//Find out how close the mouse is to the corner of the window
var rightedge=ie&&!window.opera? ietruebody().clientWidth-event.clientX-offsetxpoint : window.innerWidth-e.clientX-offsetxpoint-20
var bottomedge=ie&&!window.opera? ietruebody().clientHeight-event.clientY-offsetypoint : window.innerHeight-e.clientY-offsetypoint-20
var leftedge=(offsetxpoint<0)? offsetxpoint*(-1) : -1000
//if the horizontal distance isn't enough to accomodate the width of the context menu
if (rightedge<tipobj.offsetWidth)
//move the horizontal position of the menu to the left by it's width
tipobj.style.left=ie? ietruebody().scrollLeft+event.clientX-tipobj.offsetWidth+"px" : window.pageXOffset+e.clientX-tipobj.offsetWidth+"px"
else if (curX<leftedge)
tipobj.style.left="5px"
else
//position the horizontal position of the menu where the mouse is positioned
tipobj.style.left=curX+offsetxpoint+"px"
//same concept with the vertical position
if (bottomedge<tipobj.offsetHeight)
tipobj.style.top=ie? ietruebody().scrollTop+event.clientY-tipobj.offsetHeight-offsetypoint+"px" : window.pageYOffset+e.clientY-tipobj.offsetHeight-offsetypoint+"px"
else
tipobj.style.top=curY+offsetypoint+"px"
tipobj.style.visibility="visible"
}
}
function hideddrivetip(){
if (ns6||ie){
enabletip=false
tipobj.style.visibility="hidden"
tipobj.style.left="-1000px"
tipobj.style.backgroundColor=''
tipobj.style.width=''
}
}
document.onmousemove=positiontip
</script>
Gost ::
Aha, seveda imam ravno čas brat tole kodo ...
Si mogoče dal vse tole v js datoteko? Tudi:
script type="text/javascript"
na začektu in na koncu:
script
Daj izbriši ven te script tage v js fajlu, če so notri.
Si mogoče dal vse tole v js datoteko? Tudi:
script type="text/javascript"
na začektu in na koncu:
script
Daj izbriši ven te script tage v js fajlu, če so notri.
arjan_t ::
verjetno dostopas do kakega elementa, ki se ne obstaja, klici kodo ki se izvede takoj preko body onload() eventa
Gost ::
Lahko uporabiš addon za firefox webdeveloper toolbar, ki izpisuje javascript napake in tam pogledaš kaj je narobe.
*wolf* ::
Najde nekaj napak, vendar se jaz iz tega nič ne znajdem oz. slabo. Čudno mi je ker js scripta 100% dela (če je v HTML), vendar kljub temu da sem tiste script tage zbrisal, ne dela.
Zgodovina sprememb…
- spremenil: *wolf* ()
*wolf* ::
Najlepša hvala za pomoč.
Sem ugotovil (no kolega), kaj je bilo narobe: js (v tem primeru) dela s pomočjo CSS in ravno v CSS-ju je bila že v zgornji kodi napaka, ker ni bil prav zaključen. Se zgodi...
Sem ugotovil (no kolega), kaj je bilo narobe: js (v tem primeru) dela s pomočjo CSS in ravno v CSS-ju je bila že v zgornji kodi napaka, ker ni bil prav zaključen. Se zgodi...
Vredno ogleda ...
Tema | Ogledi | Zadnje sporočilo | |
---|---|---|---|
Tema | Ogledi | Zadnje sporočilo | |
» | Javascript - izračun razlike v datumihOddelek: Programiranje | 1900 (1755) | kogledom |
» | Javascript problemcekOddelek: Programiranje | 1583 (1376) | tempoFlow |
» | Prilagoditev frameov resolucijiOddelek: Izdelava spletišč | 1363 (1201) | c0dehunter |
» | [question]neki glede menijaOddelek: Izdelava spletišč | 1597 (1476) | tec |
» | Kako se tole naredi?Oddelek: Izdelava spletišč | 1493 (1193) | njok |