我有几页,当输入被提交时,它将转到一个检查 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!';
}
?>