- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
在这段代码中,我没有找到如何让 table1 包含数据的解决方案。当表2刷新后显示表1的数据消失了!我该如何解决这个问题?
<?php
$menucompare="";
if (isset($_POST["menucompare"]))
{
$menucompare= $_POST['menucompare'];
$table1 = '
<table id= "Table1" width="100%" border="1" cellspacing="0" cellpadding="0">
<!--SW - You need a tr tag around these headers-->
<th >Weeks</th>
<th ><p></p></th>
<th > More Details</th>
<tr id="tr">
<tr id= "tr " >
<td >gggg</td>
<td >kkkkk</td>
<td >
<form name ="dets" method="POST" action="">
<input class = "showt" name ="wnumber" id ="wnumber" type="submit" value= "More Details" />
<input type="hidden" name="data" value="wnumber" />
<noscript>
<input type="submit" value="Submit"/>
</noscript>
</form>
</td>
</tr>
</tr>
</table> ';
}
else if (isset($_POST["data"]))
{
// put whatever db process you need somwhere in this if statement
$table1 = '
<table id= "Table1" width="100%" border="1" cellspacing="0" cellpadding="0">
<!--SW - You need a tr tag around these headers-->
<th >Weeks</th>
<th ><p></p></th>
<th > More Details</th>
<tr id="tr">
<tr id= "tr " >
<td >gggg</td>
<td >kkkkk</td>
<td >
<form name ="dets" method="POST" action="">
<input class = "showt" name ="wnumber" id ="wnumber" type="submit" value= "More Details" />
<input type="hidden" name="row_id" value="value of row id" />
<input type="hidden" name="data" value="wnumber" />
<noscript>
<input type="submit" value="Submit"/>
</noscript>
</form>
</td>
</tr>
</tr>
</table> ';
$table2 = '
<div id="Table2">
<table width="100%" border="1" cellspacing="0" cellpadding="0">
<tr>
<th id="wekkNum"> wnumber</th>
<th>Your place</th>
<th>Your arr</th>
</tr>
<tr >
<td>hhhh</td>
<td>kkkk</td>
<td>jjjj</td>
</tr>
</table>
</div>
';
}
?>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script type="text/javascript">
/*Start Functions*/
function displayVals() {
var singleValues = $("select option:selected").text();
$("#hiddenselect").val(singleValues);
$("p").html("Procent of :    " + singleValues);
}
/*End functions*/
/*Start Ready*/
$(document).ready(function(){
$("select").change(function() {
displayVals();
});
displayVals();
$("select#menucompare").change(function() {
$("#aform").submit();
});
});
/*End Ready*/
</script>
<form id="aform" method="post">
<select id="menucompare" name ="menucompare" size="1" onchange="submitaform()">
<option selected='selected'>Select one</option>
<option value="value1" <?php if ($menucompare == "value1") { echo " selected='selected'"; } ?> >Text 1</option>
<option value="value2" <?php if ($menucompare == "value2") { echo " selected='selected'"; } ?> >Text 2</option>
<option value="value3" <?php if ($menucompare == "value3") { echo " selected='selected'"; } ?> >Text 3</option>
<option value="value4" <?php if ($menucompare == "value4") { echo " selected='selected'"; } ?> >Text 4</option>
</select>
<input type="hidden" name="hiddenselect" value="<?php echo $menucompare ; ?>" />
</form>
<?php
if (isset($table1))
{
print $table1;
}
if (isset($table2))
{
print $table2;
}
?>
这是我的全部代码。希望有解决这个问题的方法,我已经查看了所有帖子,但没有类似的问题。
最佳答案
/*Start Ready*/
$(document).ready(function(){
$("select").change(function() {
displayVals();
});
displayVals();
那一秒displayVals();
此代码片段中的内容在页面加载后立即触发,我预计这就是您错误的原因,因为页面加载时尚未选择任何内容。
您的 table2 将不会在页面加载或页面刷新(这只是强制页面加载)时显示,因为您具有内联样式 <div id="Table2" style="display:none;">
。与您期望保留选择选项的类似问题...如果页面刷新,它将重置为默认状态,因此没有选择的选项。
关于jquery - 页面刷新时表单数据消失,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10453188/
我一直在开发一个 .NET 字符串格式化库来协助应用程序的本地化。它称为 SmartFormat 并在 GitHub 上开源. 它试图解决的问题之一是 Grammatical Numbers .这也称
leetcode关于单数II的题目是: 给定一个整数数组,除一个元素外,每个元素出现三次。找到那一个。笔记:您的算法应该具有线性运行时复杂度。你能在不使用额外内存的情况下实现它吗? 其实我已经从网站上
我想知道创建/命名模型的首选方法是什么? 我的应用程序有一个“用户”模型,其中包含用于创建、获取、更新(等)用户记录的所有相关业务逻辑。 在我的一些 Controller 中,我可能想要获取多个“用户
在我的 Mysql 数据库中,我有一个术语列表,例如(首字母大写,大多数时候是复数) Hairdressers Restaurants Beauty Salons Fournitures For Re
如果我决定为我的所有路线名称使用复数形式,但某些资源仅作为一个东西存在,您是否将其保持为单数(更直观)或尊重使用复数的决定并保持这种方式? 我们正在用 PHP 为我们的客户门户网站设计一个新的 API
我可能在做一些愚蠢的事情,但是...... 应用/模型/user.rb: class User 然后,当我导航到 /users/123/totem/new 时,出现错误: ActionView::
您能否澄清一些 Matplotlib 术语: “subplots”(或“subplot”?)这个词是“axes”的同义词吗? “轴”和“轴”的单数/复数是什么? 最佳答案 这确实是一个令人困惑的问题。
我有一个 profile我的应用程序中的模型。我想允许用户通过 /profile 查看他们自己的个人资料,所以我创建了这条路线: resource :profile, :only => :show 我
我是一名优秀的程序员,十分优秀!