如何使用jQuery替换div的innerHTML?

我怎么能实现以下内容:

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

使用jQuery其中regTitle是我的div ID?


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

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

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

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

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

如果你有一个jQuery对象,而不是现有的内容,你想渲染。 然后重新设置内容并追加新的内容。

var itemtoReplaceContentOf = $('#regTitle');
itemtoReplaceContentOf.html('');
newcontent.appendTo(itemtoReplaceContentOf);

要么:

$('#regTitle').empty().append(newcontent);
链接地址: http://www.djcxy.com/p/64395.html

上一篇: How to replace innerHTML of a div using jQuery?

下一篇: Callback Functions inside the Cordova.exec with TypeScript