<script> <BR>function changeProp() <BR>{ <BR>btnProp.value = “This is the new VALUE”; <BR>} <BR>function changeCSSProp() <BR>{ <BR>btnStyleProp.style.backgroundColor = “aqua”; <BR>} <BR></script>
The event object property propertyName is used here to return which property has been altered.
VALUE=”Click to change the VALUE property of this button” onpropertychange='alert(event.propertyName+” property has changed value”)'> onclick=”changeCSSProp()” VALUE=”Click to change the CSS backgroundColor property of this button” onpropertychange='alert(event.propertyName+” property has changed value”)'>
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn