我不明白html函数内部的结果是什么意思。
第
行下方是什么意思 $('#sname').html(result);
答案 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>