1

非表示フィールドの値を更新して送信するフォームを作成しようとしています。その後、値がmysqlデータベースに入力されます。ただし、フォームは送信されているように見えますが、$ _ POST配列は空のようであり、$ _ POST要素のいずれかにアクセスしようとすると、「不明なインデックス」エラーが発生します。

関連するコードは次のとおりです。

<?php
if(isset($_GET['a'])){
$title = $_POST['left'];
$sql = "UPDATE boxes SET topx = '".$_POST['left']."', topy = '".$_POST['top']."', width = '".$_POST['width']."', height = '".$_POST['height']."' WHERE id = '2'";
    // this is where I get "unidentified index" errors
mysql_query($sql);
}
else {
$title = "test";
}
?>

非表示のフィールドに入力してフォームを送信するJS関数:

<script type = "text/javascript">
function dosmt(form){
JStopx = dd.elements.field2.x; alert(JStopx);
JStopy = dd.elements.field2.y; alert(JStopy);
JSwidth = dd.elements.field2.w; alert(JSwidth);
JSheight = dd.elements.field2.h; alert(JSheight);
alert("test2");

alert(document.getElementById('top').value);
document.getElementById('top').value = JStopy; alert("test1");
document.getElementById('left').value = JStopx;
document.getElementById('width').value = JSwidth;
document.getElementById('height').value = JSheight;
alert("waah");
location = "http://127.0.0.1/experiment/index.php?a=true";
alert ("OK"); 
document.getElementById('testform').submit();
}
</script>

とフォーム:

<form name = 'testform' method = "post" id = 'testform' action = "index.php">
<input type = "hidden" name = 'top' id = 'top' value = ''/>
<input type = "hidden" name = 'left' id = 'left' value = ''/>
<input type = "hidden" name = 'width' id = 'width' value = ''/>
<input type = "hidden" name = 'height' id = 'height' value = ''/>
<input type = "hidden" name = 'placeholder' id = 'placeholder' value = 'blah'/>
<input type = "button" name = 'update' id = 'update' value = "Update" onClick = 'dosmt(this.form)'>
</form>

助けていただければ幸いです、ありがとう!

4

3 に答える 3

2

locationJavaScriptでは使用しないでください。あなたが何かをするなら

location='http://example.com'

実際にページを example.com にリダイレクトしています。

行を削除する必要があります

location = "http://127.0.0.1/experiment/index.php?a=true";

次のように変更します。

document.getElementById('testform').action="http://127.0.0.1/experiment/index.php?a=true";
于 2012-05-28T13:04:31.590 に答える
1

フォームを送信するとindex.php、ではなく、に移動しますindex.php?a=true-やってみてください

location = "http://127.0.0.1/experiment/index.php?a=true";
document.getElementById('testform').action = location;
于 2012-05-28T11:41:37.840 に答える
0

交換

<input type = "button" name = 'update' id = 'update' value = "Update" onClick = 'dosmt(this.form)'>

<input type = "button" name = 'update' id = 'update' value = "Update" onClick = 'dosmt(document.testform)'>
于 2012-05-28T11:31:08.220 に答える