$('#sname')。html(result);这条线是什么意思

时间:2018-06-25 10:45:14

标签: jquery

我不明白html函数内部的结果是什么意思。

行下方是什么意思
 $('#sname').html(result);   

1 个答案:

答案 0 :(得分:1)

html()方法设置或返回所选元素的内容(innerHTML)。

例如:

<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script>
$(document).ready(function(){
    $("button").click(function(){
        $("p").html("Hello <b>world!</b>");
    });
});
</script>
</head>
<body>

<button>Change content of all p elements</button>

<p>This is a paragraph.</p>
<p>This is another paragraph.</p>

</body>
</html>