我如何实现以下目标:
document.all.regTitle.innerHTML = 'Hello World';
使用jQuery regTitle
我的div ID 在哪里?
我如何实现以下目标:
document.all.regTitle.innerHTML = 'Hello World';
使用jQuery regTitle
我的div ID 在哪里?
you can use either html or text function in jquery to achieve it
$("#regTitle").html("hello world");
OR
$("#regTitle").text("hello world");
$("#regTitle").html("Hello World");
jQuery has few functions which work with text, if you use
text()
one, it will do the job for you:Also, you can use
html()
instead, if you have any html tag...