……_0019
2017-01-09 09:33
<!doctype html>
<html>
<head>
<meta http-equiv="Content-type" content="text/html" charset="UTF-8">
<title></title>
<script src="D:\工具\Users\yang\Desktop\jQuery\jquery-3.1.1.js"></script>
<!-- 使用JS原生语法 -->
<script type="text/javascript">
window.onload = function(){
var p = document.getElementById('imooc1');
p.innerHTML = 'p1:您好!通过慕课网学习jQuery才是最佳的途径';
p.style.color = 'red';
}
</script>
<!-- 使用jQuery语法
<script type="text/javascript">
$(document).ready(function(){
var $p = $('#imooc2');
$p.html('p2:您好!通过慕课网学习jQuery才是最佳的途径').css('color','red');
});
</script>-->
</head>
<body>
<p id="imooc1"></p>
<p id="imooc2"></p>
</body>
</html>
把你的代码 复制到我的编辑器里面,发现你的那个符号是中文的,所以换成英文符号即可。
你好,p.innerHTML = 'p1:您好!通过慕课网学习jQuery才是最佳的途径'; 这句话中的分号你用的是中文的,切换成英文标点即可。一般代码中使用的标点都为英文,练习JS/jQ的推荐使用dreamweaver,有利于新手QAQ。
window.onload=function(){
var p=document.getElementById("ic1");
p.innerHTML='jQuery很方便!';
p.style.color='#616161';
}
</script>
jQuery基础 (一)—样式篇
217509 学习 · 1218 问题
相似问题