我正在学习jQuery并且因为附加图片而迷失方向。这是追加图像的正确方法吗?它似乎没有工作。我也在使用最新版本的Jquery。
<!doctype html>
<html>
<head>
<title>Test</title>
<script src="http://code.jquery.com/jquery-latest.min.js"></script>
<style>
.newlook {
color: red;
background-color: green !Important;
font-size: 50px;
font-family: Corbel;
}
</style>
</head>
<body>
<script>
$(document).ready(function () {
// $("p").css('color', 'blue');
$('p').css({
'color' : 'red',
'background' : 'pink'
})
$('.the_cool').html("THE is cool");
$('p.clicker').click(function() {
$('p.clicker').html("Don't click here");
$(this).css("color", "green");
})
});
</script>
<p>Hello</p>
<span class="the_cool"></span>
<p class="clicker">Click here</p>
<ul>
<li>.hide()</li>
<li>.addClass()</li>
<li>.toggle()</li>
<li>.find()</li>
</ul>
<p class="tryjquery">Try some more!</p>
<script>
$(document).ready(function() {
$('.tryjquery').click(function() {
// $("ul").hide();
// $('.tryjquery').addClass("newlook");
// $('ul').toggle();
$('ul').find('li').addClass('newlook').toggle();
})
});
</script>
<h2>Click here</h2>
<div class="here">Here</div>
<script>
$(document).ready(function() {
$("h2").click(function() {
$(this).append("<img src='https://www.google.com/logos/doodles/2013/holiday-series-2013-2-5173241802915840-hp.png'>");
})
});
</body>
</html>
答案 0 :(得分:2)
最后一个脚本应该像这样关闭:
<script>
$(document).ready(function() {
$("h2").click(function() {
$(this).append("<img src='https://www.google.com/logos/doodles/2013/holiday-series-2013-2-5173241802915840-hp.png'>");
})
});
</script>