標題:
jQuery POST
[打印本頁]
作者:
ray
時間:
2020-9-5 11:25
標題:
jQuery POST
<?php
$c = 0;
if(isset($_POST["a"]) && $_POST["a"] != "" && isset($_POST["b"]) && $_POST["b"] != "")
{
$c = $_POST["a"] + $_POST["b"];
echo $c;
die();
}
?>
<html>
<form action="test.php" method="post">
<input type="text" id="a" name="a">
<input type="text" id="b" name="b">
<input type="text" name="d">
<input type="button" value="+(JS)" onclick="add()">
<input type="submit" value="+(php)">
</form>
<div id="result"><?php echo($c)?></div>
</html>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script>
function add()
{
$.post( "test.php",{a:$("#a").val() , b:$("#b").val()} , function( data ) {
$( "#result" ).html( data );
});
}
</script>
複製代碼
作者:
ray
時間:
2020-9-5 11:26
作業: 如何改變程式讓+(php)的結果與原來一樣
作者:
ray
時間:
2020-9-12 10:16
<?php
$c = 0;
if(isset($_POST["a"]) && $_POST["a"] != "" && isset($_POST["b"]) && $_POST["b"] != "")
{
$c = $_POST["a"] + $_POST["b"];
if(isset($_POST["end"]) && $_POST["end"] == "true")
{
echo $c;
die();
}
}
?>
<html>
<form action="test.php" method="post">
<input type="text" id="a" name="a">
<input type="text" id="b" name="b">
<input type="text" name="d">
<input type="button" value="+(JS)" onclick="add()">
<input type="submit" value="+(php)">
</form>
<div id="result"><?php echo($c)?></div>
</html>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script>
function add()
{
if($("#a").val() != "" && $("#b").val() != "")
{
$.post( "test.php",{a:$("#a").val() , b:$("#b").val() , end: "true"} , function( data ) {
$( "#result" ).html( data );
});
}
}
</script>
複製代碼
作者:
李知易
時間:
2020-9-12 10:21
<?php
$c = 0;
if(isset($_POST["a"]) && isset($_POST["b"]) && $_POST["a"] != "" && $_POST["b"] != ""){
$c = $_POST["a"] + $_POST["b"];
if(isset($_POST["i"]) && $_POST["i"] == "true")
{
echo($c);
die();
}
}
?>
<html>
<form action="test.php" method="post">
<input type="text" id="a" name="a">
+
<input type="text" id="b" name="b">
<input type="submit" id="s" value="=(php)">
<input type="button" id="btn" value="=(JS)" onclick="add()">
</form>
<div id="re"><?php echo($c)?></div>
</html>
<script
src="https://code.jquery.com/jquery-3.5.1.js"
integrity="sha256-QWo7LDvxbWT2tbbQ97B53yJnYU3WhH/C8ycbRAkjPDc="
crossorigin="anonymous"></script>
<script>
function add(){
$.post( "test.php",{a:$("#a").val() , b:$("#b").val() , i:"true"} , function( data ) {
$( "#re" ).html( data );
});
}
</script>
複製代碼
歡迎光臨 種子論壇 | 高雄市資訊培育協會學員討論區 (http://istak.org.tw/seed/)
Powered by Discuz! 7.2