0

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

有一个按钮,我想点击按钮显示一些东西。目前我只是使用警报进行测试。

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

2 回答 2

1

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

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

您还可以添加 html。

function myFunction() {
    $('#res1').html('hi');
}
于 2013-06-28T01:24:29.637 回答
0

为什么不使用

$("#res1").text("h1")

这会将文本添加到您的#res1

于 2013-06-28T01:23:41.117 回答