我只想快速测试我的代码。我想在所需区域显示结果。
有一个按钮,我想点击按钮显示一些东西。目前我只是使用警报进行测试。
$(document).ready(function () {
$('#btn1').click(myFunction);
});
function myFunction() {
$('#res1').alert('hi');
}
我的 CSS:
#btn1 {
position: relative;
width: 50px;
height: 25px;
margin-left: 90px;
margin-top: 10px;
background-color: #008080;
}
#res1 {
position: relative;
width: 550px;
height: 550px;
}
html很简单:
<div id="btn1">Send</div>
<div id="res1"></div>