admin管理员组文章数量:1343311
I am having problems getting the OnChnage Listener to work, if i position the script after the </form>
tag the listener works fine but if i place the script within the <head>
tags it fails to work.
On my site i can only have the script within the <head>
tags is there anything I can do to make the script runn within the <head>
tags?
in this configuration the script does not work
<head>
<script type="text/javascript">
if(window.addEventListener) {
document.getElementById('address').addEventListener('change', loadXMLDoc, false);
} else if (window.attachEvent){
document.getElementById('address').attachEvent("onchange", loadXMLDoc);
}
function loadXMLDoc(){
alert('worked');
}
</script>
</head>
<body>
<form>
<input id="address" name="address" type="text"/>
<input id="test" name="test" type="text"/>
</form>
I am having problems getting the OnChnage Listener to work, if i position the script after the </form>
tag the listener works fine but if i place the script within the <head>
tags it fails to work.
On my site i can only have the script within the <head>
tags is there anything I can do to make the script runn within the <head>
tags?
in this configuration the script does not work
<head>
<script type="text/javascript">
if(window.addEventListener) {
document.getElementById('address').addEventListener('change', loadXMLDoc, false);
} else if (window.attachEvent){
document.getElementById('address').attachEvent("onchange", loadXMLDoc);
}
function loadXMLDoc(){
alert('worked');
}
</script>
</head>
<body>
<form>
<input id="address" name="address" type="text"/>
<input id="test" name="test" type="text"/>
</form>
Share
Improve this question
asked Aug 29, 2012 at 19:36
CookiimonstarCookiimonstar
4212 gold badges7 silver badges18 bronze badges
3 Answers
Reset to default 6Put it this way:
<head>
<script type="text/javascript">
window.onload= function () {
if(window.addEventListener) {
document.getElementById('address').addEventListener('change', loadXMLDoc, false);
} else if (window.attachEvent){
document.getElementById('address').attachEvent("onchange", loadXMLDoc);
}
function loadXMLDoc(){
alert('worked');
}
}
</script>
</head>
Put your code in the window.onload
function:
<head>
<script>
window.onload = function() {
if(window.addEventListener) {
document.getElementById('address').addEventListener('change', loadXMLDoc, false);
} else if (window.attachEvent){
document.getElementById('address').attachEvent("onchange", loadXMLDoc);
}
function loadXMLDoc(){
alert('worked');
}
}
</script>
<body>
...
</body>
When you place the script in the <head>
, the elements you are getting with document.getElementById
do not exist yet. Wait for the window to load before adding the event listener.
You need to wait for the window to load with a jQuery $(document).ready
or by adding a loaded listener to the window:
window.addEventListener('load',addListener,false);
function addListener() {
//your code here
}
本文标签: JavaScript OnChange Listener position in HTML markupStack Overflow
版权声明:本文标题:JavaScript OnChange Listener position in HTML markup - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743725304a2528265.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论