我只想快速测试一下我的代码。我想在所需区域中显示结果。

有一个按钮,我想单击该按钮以显示某些内容。目前,我仅使用警报进行测试。

    $(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>

最佳答案

是否要向res1 div添加文本?就是这样:

function myFunction() {
    $('#res1').text('hi');
}


您也可以添加html。

function myFunction() {
    $('#res1').html('hi');
}

08-17 12:15