導航:首頁 > 編程語言 > js獲取值傳到php

js獲取值傳到php

發布時間:2021-03-19 06:48:33

❶ 如何將javascript的變數值傳遞給php

<input type="hidden" id="shjj" name="shjj" value="">
function changeselect1()
{
...
return tt;
}

js把值來自賦到這里
document.getElementById("shjj").value= changeselect1();

在下一個php頁面裡面 $_post["shjj"],就可以取的值

❷ js如何傳值給php

1:HTML中的值如何傳到,下面假設是文件1.php

復制代碼 代碼如下:

<html>

<body>
<form action="1.php"
method="post">
name:<input type="text"
name="username" id="username">
rename:<input
type="text" name="username1" id="username1">
<input
type="button" value="submit" on CliCk="get()">

</form>
</body>
</html>

JS假如想取文本框中用戶輸入的name值,這樣寫

復制代碼 代碼如下:

<script
language='JavaScript'>
function get()
{
var
n=document.getElementById('username').value;
alert
(n);
}</script>

這樣的話在有調用JS
get()時就會彈出警示框,裡面的內容就是name的值。
2:假如說JS中的這個取到的name值要傳回rename的文本框中,這樣寫

復制代碼 代碼如下:

<script language='JavaScript'>

function get()
{
var n=document.getElementById('username').value;

document.getElementById("username1").value=n;

}</script>

這樣的話在下面調用get()就會自動顯示你上面name輸入的值。
3:PHP中取頁面的值
這個我想大家都會了吧

復制代碼 代碼如下:

<?php
$name=$_REQUEST["username"];
echo
$name;
?>

4:PHP的值傳回頁面
在HTML中插入PHP語言,可以調用PHP中變數的值,也可用Smarty(推薦)。
有了以上這些,不管是HTML頁面里的值還是JS中變數的值,都可以輕松的傳入PHP,當然,PHP的值也可傳到想要的地方。

❸ js 如何獲取值並傳到php中$_POST[name]中

通過ajax來實現
建議不明白的時候盡量用jquery很簡單
$.ajax({

type: "POST",

url: "some.php",

data: "name=John",

success: function(msg){

alert( "Data Saved: " + msg );

}
});

❹ 獲取到js的值怎麼傳到php和資料庫作比較

var str_data=『你獲取的數據』;

$.ajax({
type: "POST",
url: "後台地址",
data: str_data,
success: function(date)
{//後台返回給前台的值
if(date=='cg')
{

}
else if(date=='wz')
{
alert('請填寫完整信息');
}
else
{
alert('系統出錯,請聯系管理員');
}

}
});

❺ JS的值怎麼傳遞給PHP

不用AJAX,最簡單就是傳個參數過去
如:function saveGame(str){
window.location.href='url?str=' + str;
}

樓上的是一種跳轉的方式。如果你想不刷新處理,獲取數據。還是用ajax 。很簡單的。給你個例子。這里我我用jquery的$.post
$.post(URL,{參數1:alue,參數2:value2},function(data){
//這里你可以處理獲取的數據。我使用是json 格式。你也可以使用其它格式。或者為空,讓它自己判斷得了
},'json');

❻ JS 如何傳一個值到php 文件

方法:
<input type="button" value="f1" onclick="f1()">
<script>
//方法1
function f1(){
var type = 'aaa';
window.location.href='1.php?type=' + type;
}
</script>
1.php 中:
$type = $_GET['type'];
echo $type;

方法2:
<script src="jquery-1.10.2.min.js"></script>
<script>
$(document).ready(function(){
var type ='aaa';
$("button").click(function(){
$.post("4-ajax.php",{
type: type,
},
function(data,status){
alert("數據:" + data + "\n狀態:" + status);
});
});
});
</script>
<button>向頁面發送 HTTP POST 請求,並獲得返回的結果</button>
4-ajax.php中:
$type = $_POST["type"];
echo $type;

❼ js獲取到的值如何用ajax傳到php中

$.ajax({type:"",url:"",data:"",dataType:"json",success:function(data){

//這里處理返回的結果
//type為數據提交的方式post或者get
//data表示要提交的數據方式為{name1:value1,name2:value2.....等等}
//dataType表示數據處理後返回的數據類型一般返回json的數據類型使用$.each進行循環操作
//success表示數據請求成功後執行的動作
}});

❽ 如何把JS獲取的數據傳遞給php

方法1 js的location 或 document 的url傳值
方法2 js的submit提交
方法3 js的ajax

數據可以是簡單的字元串 也可以是 json格式或 xml等

❾ html能過JS獲取PHP中的值

1、js獲取php文件的源碼是完全不可能的。
2、如果獲取1.php在瀏覽器中訪問後的頁面內容。用js的ajax獲取到1.php內容,然後分析截取出需要的字元。

閱讀全文

與js獲取值傳到php相關的資料

熱點內容
百分表數據記錄怎麼看 瀏覽:360
linux二進制打開文件 瀏覽:434
微信小程序jsif語句 瀏覽:218
qq聊天手機型號隱藏 瀏覽:926
鏡像翻轉哪個美圖app有 瀏覽:33
計算機最近保存的文件在哪裡 瀏覽:836
win7路由器怎麼改密碼 瀏覽:837
excel超鏈接文件名 瀏覽:544
sap710密碼 瀏覽:800
蘋果緩存的文件怎麼看 瀏覽:637
蘋果手機打開文件亂碼 瀏覽:994
英雄聯盟空白名字文件夾 瀏覽:226
approachmanner 瀏覽:522
win10pr緩存文件在c盤哪裡 瀏覽:608
程序不在任務欄顯示怎麼辦 瀏覽:868
ps恢復替換文件怎麼恢復 瀏覽:689
ef里沒有tt文件 瀏覽:531
手機哪裡可以找米家app 瀏覽:362
怎麼導入數據到資料庫 瀏覽:828
iphonex自帶音樂app怎麼使用 瀏覽:236

友情鏈接