如何使用jQuery替换div的内部HTML?

2022-08-29 22:05:22

我怎样才能实现以下目标:

document.all.regTitle.innerHTML = 'Hello World';

使用jQuery我的id在哪里?regTitlediv


答案 1
$("#regTitle").html("Hello World");

答案 2

html() 函数可以采用 HTML 字符串,并将有效地修改属性。.innerHTML

$('#regTitle').html('Hello World');

但是,text() 函数将更改指定元素的(text) 值,但保留结构。html

$('#regTitle').text('Hello world');