http://jsfiddle.net/bUjx7/31使用Javascript/jQuery的
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<style type="text/css">
.fieldsgame1 {
display:none;
}
.fieldsgame2 {
display:none;
}
.fieldsgame3 {
display:none;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('.tablereplace a').click(function() {
$('.fieldsmatch').fadeOut(0);
$('.fieldsgame1').fadeOut(0);
$('.fieldsgame2').fadeOut(0);
$('.fieldsgame3').fadeOut(0);
var region = $(this).attr('data-region');
$('#' + region).fadeIn(0);
});
});
</script>
替代物將這個變成我的WordPress頭。 CSS很好。 HTML很好。 Javascript不起作用。幫幫我?
嘗試用'jQuery(document).ready(function($){' – 2013-03-02 19:35:58
)替換腳本的第一行什麼不工作?小提琴在工作 – howderek 2013-03-02 19:37:48
@howderek http://kperovic.com/ygoverdose/constructed-4 /#vsfield現場演示。HTML中唯一一行是「Agents」行,並且它不會更改。 – 2013-03-02 19:54:22