日期:2014-05-16 浏览次数:20350 次
<html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>无标题页</title> </head> <body> <form id="form1" runat="server"> <asp:TextBox ID="txt2" runat="server"></asp:TextBox> <p>结果:</p> <div id="image"></div> <asp:TextBox ID="txt" runat="server"></asp:TextBox> <input type="button" id="btn"></input> </form> <script type="text/javascript"> var $ = function(o) { return document.getElementById(o) }; $('txt2').onpropertychange = function() { $('txt').value = this.value; $('abc').src = "images/JD1.jpg"; } $('btn').onclick = function() { var imgID = new Image(); imgID.src = "images/JD2.jpg"; document.getElementById("image").innerHTML = "<img src="+imgID.src+" />"; } </script> </body> </html>