JS技术

onclick事件触发调用其他JS文件方法_Javascript教程

字号+ 作者:H5之家 来源:H5之家 2015-10-01 11:14 我要评论( )

onclick事件触发调用其他JS文件方法,学习onclick事件触发调用其他JS文件方法,onclick事件触发调用其他JS文件方法,查看onclick事件触发调用其他JS文件方法,

教程网3月28日整理

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "">
<html xmlns="">
<head>
<title> new document </title>
<meta name="generator" content="editplus" />
<meta name="author" content="" />
<meta name="keywords" content="" />
<meta name="description" content="" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<script type="text/javascript">
<!--
function changeImage(obj)
{
    var imgurl = 'face' + obj.value + '.jpg';
    document.getElementById('icon').src = imgurl;
    document.getElementById('debug').innerHTML = '<-- url: ' + imgurl;
}
//-->
</script>
</head>
<body>
<select onchange="changeImage(this);">
    <option value="0" selected>default</option>
    <option value="1">aaa</option>
    <option value="2">bbb</option>
    <option value="3">ccc</option>
</select>
<img id="icon" src="" />
<span id="debug"></span>
</body>
</html>

Javascript教程

 

1.本站遵循行业规范,任何转载的稿件都会明确标注作者和来源;2.本站的原创文章,请转载时务必注明文章作者和来源,不尊重原创的行为我们将追究责任;3.作者投稿可能会经我们编辑修改或补充。

相关文章
网友点评