0

我有几页,当输入被提交时,它将转到一个检查 url 变量的 php 文件,这可能是 executeeffects.php?option=blockuser

但是当我转到该页面时,该页面只是在executeeffects php文件中显示“未定义”,它具有检查是否设置了变量的检查功能,如果是,它会回显一件事,如果不是,它会回显另一件事,但是我没有让它回显未定义,所以我不知道它来自哪里,代码如下

有人可以告诉我这是 jquery mobile 的问题还是我遗漏了什么?

块.php

<!DOCTYPE html> 
<html> 
<head> 
    <title>Ryan Kelly</title> 

<meta name="viewport" content="width=device-width, initial-scale=1 user-scalable=no"> 

<link rel="stylesheet" href="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.css" />
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>

<script src="http://code.jquery.com/mobile/1.2.0/jquery.mobile-1.2.0.min.js"></script>
<script src="effects.js"></script>
    </head> 
    <body> 

    <div data-role="page">

<div data-role="header">
    <h1>Ryan Kelly</h1>
</div><!-- /header -->

<div data-role="content">   
    <label for="basic">Username:</label>
     <input type="text" name="name" id="basic" value="" />
     <input type="text" name="name" id="blocked" value="" />
     <a href="executeeffects.php?option=block" data-role="button" class="button">Submit</a>

     <?php include('listusers.php'); ?>
 </div><!-- /content -->

     </div><!-- /page -->

     </body>
   </html>

执行效果.php

<?php


if(isset($_GET['option'])){

echo 'something is set!';
} else {

echo 'nothing is set!';
}

?>
4

1 回答 1

0

你说“我有几页,当输入提交时,它会转到一个检查 url 变量的 php 文件,这可能是 executeeffects.php?option=blockuser

这个:

<input type="text" name="name" id="basic" value="" />
 <input type="text" name="name" id="blocked" value="" />
 <a href="executeeffects.php?option=block" data-role="button" class="button">Submit</a>

不会提交输入的值,除非您使用某种类型的jQuery,但您没有发布在这种情况下,这需要以不同的方式完成。

提交您需要使用的输入值<form>

于 2013-01-20T22:45:33.297 回答