js呼叫php檔案的方法:先新建一個php檔案;然後使用【$cid_data】在檔案php程式碼中頂部處理,程式碼為【$cid_data .= "'".$item['name' ]."'";】。
js呼叫php檔案的方法:
#實作功能
有一個按鈕和一個輸入框輸入框輸入按鈕點擊以後執行php程式碼
百度了好久發現還是表單提交最合理
<div id="side-tab3"> <h2>批量获取数据</h2> <p>根据cid 获取所有商品名称</p> <form action="admin.php#side-tab3" id="form_get_all_name" method="post"> <input type="text" id="cid_all_name" name="cid_all_name"> <button class="btn btn-success cid_all_name">获取</button> </form> <div> <?php echo $cid_data ?> </div> </div>
$cid_data
可以在檔案php程式碼中頂部處理
function getCidAllNamme($con, $name) { $sql = "select `name` from `la_goods` where `cid`='{$name}'"; if (!$obj = mysqli_query($con, $sql)) { die(mysqli_error($con) . $sql); } $nameList = array(); while ($res = mysqli_fetch_assoc($obj)) { $nameList[] = $res; } $cid_data = ''; if (count($nameList) > 0) { $cid_data .= "['"; //python 中数组的表示方法 ['',''] foreach ($nameList as $item) { $cid_data .= "'".$item['name']."'"; } $cid_data .= "']"; } return $cid_data; } $cid_all_name = $_POST['cid_all_name']; if (!empty($cid_all_name)) { $cid_data = getCidAllNamme($con, $cid_all_name); }
相關學習推薦:php程式設計(影片)
以上是js呼叫php檔案的方法是什麼的詳細內容。更多資訊請關注PHP中文網其他相關文章!