对不起,我想切换更改php echo输入值,
但是错误,我该怎么办?请帮帮我,谢谢!
php code
<?php
$date = isset($_GET['date']) ? $_GET['date'] : date('Y-m-d');
$prev_date = date('Y-m-d', strtotime($date .' -1 week'));
$next_date = date('Y-m-d', strtotime($date .' +1 week'));
for($i=1;$i<=5;$i++){
$date = date('Y-m-d', strtotime($date .'+1 day'));
echo $date;
for ($j=1; $j<=5 ; $j++) {
echo "<input type='button' value='X' class='change'>";
}
echo '<br>';
}
?>
javascritp代码
$( document ).ready(function() {
$('.change').toggle(function(){
$(this).val('O');},
function(){
$(this).val('X');}
);
});
答案 0 :(得分:0)
尝试以下脚本:
$( document ).ready(function() {
$('.change').click(function(){
if ($(this).val() == 'X')
$(this).val('O');
else if ($(this).val() == 'O')
$(this).val('X');
});
});