我怎样才能实现以下目标:
document.regTitle.innerHTML = 'hello';
答案 0 :(得分:1)
你应该添加这个
$(function(){
$('button').click(function(){
$('span.regTitle').text('Span Text Replaced');
});
});
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<span class="regTitle">Sample Content</span>
<br/><br/>
<button>Replace Span</button>
答案 1 :(得分:0)
$(function(){
$('#regTitle').html('this is a test');
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>
<div id="regTitle"></div>
这是jQuery innerhtml的片段。