我怎样才能做到以下几点:
document.all.regTitle.innerHTML = 'Hello World';
使用jQuery哪里regTitle是我的div id?
我怎样才能做到以下几点:
document.all.regTitle.innerHTML = 'Hello World';
使用jQuery哪里regTitle是我的div id?
当前回答
jQuery有几个函数与文本工作,如果你使用text()一个,它将为你做的工作:
$("#regTitle").text("Hello World");
此外,你可以使用html()代替,如果你有任何html标签…
其他回答
$("#regTitle").html("Hello World");
以下是你的答案:
//This is the setter of the innerHTML property in jQuery
$('#regTitle').html('Hello World');
//This is the getter of the innerHTML property in jQuery
var helloWorld = $('#regTitle').html();
你可以使用HTML或jquery的文本函数来实现它
$("#regTitle").html("hello world");
OR
$("#regTitle").text("hello world");
$("#regTitle")[0].innerHTML = 'Hello World';
jQuery有几个函数与文本工作,如果你使用text()一个,它将为你做的工作:
$("#regTitle").text("Hello World");
此外,你可以使用html()代替,如果你有任何html标签…