我有以下表格从mysql服务器获取数据并进行计算但是当使用重置按钮时我无法清除包含来自我的sql的数据的文本字段 如果缺少代码,我可能已经扣除了一些必要的部分,但代码只是重置按钮而已。 你能不能帮帮我。
<html>
<head>
<script type="text/javascript">
$(document).ready(function() {
$("#reset").click(function(){
$("#find").val("");
$("#Editbox13").val("");
$("#Editbox14").val("");
$("#Editbox17").val("");
});
});
</script>
<?php
$find=$_POST["find"];
$find = preg_replace('/ı/', 'i', $find);
$find = strtoupper($find);
mysql_connect("*****", "*****", "****") or die(mysql_error());
mysql_select_db("kaliteler") or die(mysql_error());
$data = mysql_query("SELECT * FROM egearge3 WHERE BASECODE LIKE '%$find%' ");
$result = mysql_fetch_array( $data );
?>
</head>
<body>
<div id="wb_Form1" style="position:absolute;left:5px;top:4px;width:1346px;height:798px;z-index:69;maxwidth:device-width;">
<form name="PRICE_CALCULATION" method="post" action="" enctype="multipart/form-data" target="_parent" id="Form1" onsubmit="return ValidatePRICE_CALCULATION()">
<input type="text" id="Editbox13" style="position:absolute;left:123px;top:406px;width:90px;height:30px;line-height:30px;z-index:17;" name="Editbox13" value="<?php if(isset($_POST['Button2'])&&$find!="") {echo $result['REALWIDTH'] ;} ?>" tabindex="12" spellcheck="false" placeholder="000">
<input type="text" id="Editbox14" style="position:absolute;left:344px;top:408px;width:90px;height:30px;line-height:30px;z-index:28;" name="Editbox14" value="<?php if(isset($_POST['Button2'])&&$find!="") {echo $result['REALWEIGHT'] ;} ?>" tabindex="13" spellcheck="false" placeholder="000">
<input type="text" id="Editbox17" style="position:absolute;left:2px;top:663px;width:1314px;height:63px;line-height:63px;z-index:41;" name="Editbox17" value="<?php if(isset($_POST['Button2'])&&$find!="") {echo $result['TYPE']."-".$result['COMPOSITION']."-".$result['PROCESS'] ;}else{echo "";}?>" spellcheck="false" placeholder="product details" rows="2" >
<input type="submit" id="Button1" name="submit[]" value="giveprice" style="position:absolute;left:516px;top:608px;width:222px;height:44px;z-index:42;" formaction="insert2.php" >
<input type="text" id="find" style="position:absolute;left:556px;top:222px;width:132px;height:36px;line-height:36px;z-index:64;" name="find" value="<?php echo $find ; ?>" spellcheck="false">
<button type="submit" id="Button2" onclick="window.reload(true);return false;" name="Button2" value="getir" style="position:absolute;left:562px;top:282px;width:71px;height:46px;z-index:65;" formaction="page8.php" >getir</button>
<input type="reset" id="btnReset" name="reset" value="Reset" style="position:absolute;left:642px;top:282px;width:56px;height:44px;z-index:68;" onclick="reset()">
</form>
</div>
</body>
</html>
答案 0 :(得分:0)
reset
按钮将表单重置为初始状态,这意味着:加载的状态。如果您在服务器上呈现了内容,reset
按钮会将表单恢复为该状态。
如果要使用给定的Javascript代码清除它,您应该查看正确的选择器:引用ID为reset
的不存在元素,而重置按钮具有ID {{ 1}} - 它使用一个JS处理程序来调用方法btnReset
,这个方法代码中没有给出。
因此,毕竟:您的代码存在多个问题。这有什么帮助你了吗?
答案 1 :(得分:0)
您有3个错误:
所以要纠正:删除onclick =“重置,更改$(”#reset“)。点击$(”#btnReset“)。点击并将type =”reset“更改为type =”button“。
修改强>
我理所当然地认为你包含了加载jQuery的脚本行。如果你不这样做,你还必须包括
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
在<script>
标记之前或$命令不起作用。请注意,这是包含jQuery的众多方法之一。使用您想要的任何内容,但不要忘记它必须在<script>
标记中的代码运行
像这样:
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$("#btnReset").click(function(){
$("#find").val("");
$("#Editbox13").val("");
$("#Editbox14").val("");
$("#Editbox17").val("");
});
});
</script>
</head>
<body>
<div id="wb_Form1" >
<form name="PRICE_CALCULATION" method="post" action="" enctype="multipart/form-data" target="_parent" id="Form1" onsubmit="return ValidatePRICE_CALCULATION()">
<input type="text" id="Editbox13" value="whatever">
<input type="text" id="Editbox14" value="whatever">
<input type="text" id="Editbox17" value="whatever">
<input type="submit" id="Button1" name="submit[]" value="giveprice" formaction="insert2.php" >
<input type="text" id="find" value="whatever">
<button type="submit" id="Button2" onclick="window.reload(true);return false;" formaction="page8.php" >getir</button>
<input type="button" id="btnReset" name="reset" value="Reset" >
</form>
</div>
</body>
</html>