2 回答
TA贡献2037条经验 获得超6个赞
使用原生 JavaScript:
document.addEventListener('DOMContentLoaded', (event) => {
document.getElementById('showTag').value = document.getElementById('addTag').textContent;
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<p id="addTag">This is Sparta</p>
<input name="showTag" type="text" id="showTag" />
使用jQuery:
$(document).ready(function(){
$('#showTag').val($('#addTag').text());
});
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<p id="addTag">This is Sparta</p>
<input name="showTag" type="text" id="showTag" />
TA贡献1797条经验 获得超4个赞
查询:
$( document ).ready(function() {
$('#showTag').val($('#addTag').html());
});
添加回答
举报