Jump to content
  • 0

onselect и attachEvent в ие!


dostel1
 Share

Question

.При выделение текста ие6,7 событие срабатыает после выделение каждого символа а в толковых браузерах оно возникает после полного выделение нужной части текста!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
</head>

<body>
<input type="text" onselect="alert('ONE')" />

</body>
</html>

и второй вопрос у меня при аttachEvent события выполняются не в нужном порядке!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
</head>

<body>
<input type="text"/>
<script>
window.onload=function (){
x=document.getElementsByTagName('input')[0]
if(x.addEventListener){
x.addEventListener('click',function(){alert('1')},false)
x.addEventListener('click',function(){alert('2')},false)
}
else{
x.attachEvent('onclick',function(){alert('1')})
x.attachEvent('onclick',function(){alert('2')})
}
}
</script>

</body>
</html>

Как исправить?

Edited by dostel1
Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

попробовал таймаутом сделать бо потом получается идиотизм в ие вечное сообщение в ие!

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Документ без названия</title>
<script>
function aa(){
alert('ONE')
}
</script>
</head>

<body>
<input type="text" onselect="setTimeout('aa()',4000)" />

</body>
</html>

Edited by dostel1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy