0

次のコードからフォームを作成しようとしていますが、成功していません。隠しフィールドを入力して、ドラッグ可能なアイテムの 1 つを「Most Like Me」フィールドに入れると値 1 を取得し、ドラッグ可能なアイテムが「2 番目に似ている」フィールドにある場合は値 2 を取得し、" 3番目は私に似ています」、「私に似ていない」は4です。サンプルはこちらからご覧いただけます。次のコードを使用してこれを作成するにはどうすればよいですか? データベースへの追加にはPHPとMySQLを参考にしています。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<style type="text/css">
/* Add some margin to the page and set a default font and colour */

body {margin: 30px;font-family: "Georgia", serif;line-height: 1.8em;color: #333;}

/* Give headings their own font */

h1, h2, h3, h4 {
  font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

/* Main content area */

#content {
  margin: 80px 70px;
  text-align: center;
  -moz-user-select: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Header/footer boxes */

.wideBox {
  clear: both;
  text-align: center;
  margin: 70px;
  padding: 10px;
  background: #ebedf2;
  border: 1px solid #333;
}

.wideBox h1 {
  font-weight: bold;
  margin: 20px;
  color: #666;
  font-size: 1.5em;
}

/* Slots for final card positions */

#cardSlots {
  margin: 50px auto 0 auto;
  background: #ddf;
}

/* The initial pile of unsorted cards */

#cardPile {
  margin: 0 auto;
  background: #ffd;
}

#cardSlots, #cardPile {
  width: 910px;
  height: 120px;
  padding: 20px;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  -moz-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .3em rgba(0, 0, 0, .8);
}

/* Individual cards and slots */

#cardSlots div, #cardPile div {
  float: left;
  width: 150px;
  height: 78px;
  padding: 10px;
  padding-top: 40px;
  padding-bottom: 0;
  border: 2px solid #333;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  margin: 0 0 0 10px;
  background: #fff;
}

#cardSlots div:first-child, #cardPile div:first-child {
  margin-left: 0;
}

#cardSlots div.hovered {
  background: #aaa;
}

#cardSlots div {
  border-style: dashed;
}

#cardPile div {
  background: #666;
  color: #fff;
  font-size: 20px;
  text-shadow: 0 0 3px #000;
}

#cardPile div.ui-draggable-dragging {
  -moz-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  -webkit-box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
  box-shadow: 0 0 .5em rgba(0, 0, 0, .8);
}

</style>

<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.5.0/jquery.min.js"></script>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8.9/jquery-ui.min.js"></script>

<script type="text/javascript">

// JavaScript will go here

$( init );

function init() {

  // Create the pile of shuffled cards
  {
    $('#cardPile div').draggable( {
      containment: '#content',
      stack: '#cardPile div',
      cursor: 'move',
      revert: true
    } );
  }

  // Create the card slots
  {
    $('#cardSlots div').droppable( {
      accept: '#cardPile div',
      hoverClass: 'hovered',
      drop: handleCardDrop
    } );
  }

function handleCardDrop( event, ui ) {
    var slotNumber = $(this);
    var cardNumber = ui.draggable;

    if ( cardNumber == cardNumber ) {
        ui.draggable.addClass ( 'correct' );
        ui.draggable.draggable ( 'disable' );
        $(this).droppable( 'disable' );
        ui.draggable.position( {of: $(this), my: 'left top', at: 'left top' } );
        ui.draggable.draggable( 'option', 'revert', false );
    }
}



}

</script>
</head>

<body>

<div id="content">
  <div id="cardPile">
  <div>Controlling</div>
  <div>Motivating</div>
  <div>Realistic</div>
  <div>Organized</div>
  </div>

  <div id="cardSlots">
  <div>Most Like Me</div>
  <div>2nd Most Like Me</div>
  <div>3rd Most Like Me</div>
  <div>Least Like Me</div>
  </div>

</div>

</body>
</html>
4

1 に答える 1

0

私はあなたの機能を変更しました:

function handleCardDrop( event, ui ) {
var slotNumber = $(this);
var cardNumber = ui.draggable;
var choice = cardNumber.html();
var aux = 0;
if (choice == 'Controlling')
{
    aux = 1;
}
if (choice == 'Motivating')
{
    aux = 2;
}
if (choice == 'Realistic')
{
    aux = 3;
}
if (choice == 'Organized')
{
    aux = 4;
}
var droped= slotNumber.html();

if(droped == 'Most Like Me')
{
    $("#uno").val(aux);
}
if(droped == '2nd Most Like Me')
{
    $("#dos").val(aux);
}
if(droped == '3rd Most Like Me')
{
    $("#tres").val(aux);
}
if(droped == 'Least Like Me')
{
    $("#cuatro").val(aux);
}
if ( cardNumber == cardNumber ) {
    ui.draggable.addClass ( 'correct' );
    ui.draggable.draggable ( 'disable' );
    $(this).droppable( 'disable' );
    ui.draggable.position( {of: $(this), my: 'left top', at: 'left top' } );
    ui.draggable.draggable( 'option', 'revert', false );
}
}

------------------アップデート2.0 ---------------------------

私は ajax 部分を追加し、フィドルを変更しました:

  $("#saveResult").click(function(){

var uno = $("#uno").val();  
var dos = $("#dos").val();  
var tres = $("#tres").val();  
var cuatro = $("#cuatro").val();
var params = {

            "uno" : uno,

            "dos" : dos,

            "tres" : tres,

            "cuatro": cuatro

    };    
 $.ajax( {
  type: "POST",
  url: 'myphpfile.php',
  data: params,
  success: function( response ) {
    $("#result").html(response);
  }
} );

}); 

ファイル myphpfile.php 内:

<?php
$uno = $_POST['uno'];
$dos = $_POST['dos'];
$tres = $_POST['tres'];
$cuatro = $_POST['cuatro'];

//Here the code to insert in your database

?>

更新された作業フィドル: http://jsfiddle.net/robertrozas/qLhke/25/

于 2013-11-07T01:39:48.153 に答える