标签:document html inner jquery doc str span ber number
原生js:
document.getElementsByTagName("title")[0].innerText = ‘innerText我是原生js方法‘;
document.title = ‘title我是原生js方法‘;
jquery:
$(‘title‘).html(‘html我是jq方法‘);
$(‘title‘).text(‘text我是jq方法‘);
标签:document html inner jquery doc str span ber number
原文地址:https://www.cnblogs.com/douyafei/p/11023691.html