对于下面的代码,当您单击按钮时,我试图让 img 标记加载到页面上的某个位置。这只是为了测试目的,但我需要让它工作。img 标签是一个 1 x 1 的像素,应该跟踪点击的内容。我知道 a 标签更适合此目的,但由于我无法在此解释的原因,不能使用此标签。
您可以提供任何使以下代码正常工作的建议都会很棒。我将在 Fiddler 中进行测试以确认。
如果您需要更多信息或澄清,请告诉我。
我感谢您的帮助!
谢谢,
<html>
<style type="text/css">
#button {
display: inline-block;
height: 20px;
width: 150px;
background-color:orange;
font-family:cursive, arial;
font-weight:bold;
color: brown;
border-radius:5px;
text-align:center;
margin-top:2px;
}
#output {
font-family:garamond;
color:black;
height:450px;
width:320px;
border-radius:2px;
border-color:black;
background-color:white;
overflow: auto;
float: left;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('#button').click(function(){
document.getElementById('output').innerHTML +=('<img height="1" width="1" src="http://view.atdmt.com/action/AAA_ImageTest"/>');
});
});
</script>
<body>
<div id="button">Test</div>
<div id="output"></div>
</body>
</html>