概述
<html>
<head>
<script language="javascript">
function changeBox(status)
{
textbox.style.display = status ? "" : "none"
}
</script>
<script language="javascript" for="test" event="onpropertychange">
var propName = event.propertyName
var propValue = this[propName]
switch(propName)
{
case "checked":
changeBox(propValue)
break;
}
</script>
</head>
<body>
<input type="radio" id="test" name="radio" checked="true" />
<input type="radio" name="radio" />
<input id="textbox" />
</body>
</html>
<div style="position: absolute; top: 10; right: 10; width: 148; height: 18;cursor:hand">
<input type="button" name="Button" value="查看源代码" onClick= 'window.location = "view-source:" + window.location.href'></div>
最后
以上就是鲤鱼夏天为你收集整理的onpropertypchange的全部内容,希望文章能够帮你解决onpropertypchange所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复