php网页js调用失败,无法显示,怎么办
<!doctypehtml><htmllang="en"><head>.....<scripttype="text/javascript"src="http://cdn....
<!doctype html>
<html lang="en">
<head>
.....
<script type="text/javascript" src="http://cdn.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
.......</html>
php网页调用JS,现在网页打开都无法显示JS形成的模块(我的是折线图,折线图没了)怎么办,重装浏览器?我360换IE也不行啊,
再如,点击我写这个jquery-1.8.3.min.js
会弹出(本来应该正常显示JS文件代码的)
404 Not Found
The requested URL was not found on this server. Sorry for the inconvenience.
Please report this message and include the following information to us.
很急,求大神帮忙!怎么破? 展开
<html lang="en">
<head>
.....
<script type="text/javascript" src="http://cdn.hcharts.cn/jquery/jquery-1.8.3.min.js"></script>
.......</html>
php网页调用JS,现在网页打开都无法显示JS形成的模块(我的是折线图,折线图没了)怎么办,重装浏览器?我360换IE也不行啊,
再如,点击我写这个jquery-1.8.3.min.js
会弹出(本来应该正常显示JS文件代码的)
404 Not Found
The requested URL was not found on this server. Sorry for the inconvenience.
Please report this message and include the following information to us.
很急,求大神帮忙!怎么破? 展开
2015-06-03 · 知道合伙人互联网行家
关注
展开全部
建议使用jquery
假设你右边是一个div标签,给他设置一个id值,比如id="show"
给查询两个字加一个标签,比如a标签:<a href="#" class="chaxun">查询</a>
然后写jquery的ajax代码:
$('a.chaxun').click(function(){//class=”chaxun"的a标签的点击事件
var bianhao, minzhi;//声明2个变量
biaohao = $('#bianhao').val();//取得文本框id为bianhao的值
mingzhi = $('#mingzi').val();//同理
$('div#show').load('chaxun.php?bianhao=' +bianhao +'&mingzhi=' + mingzhi);
});
最后在你的chaxun.php中,和平时写代码一样就行了
<?php
$bianhao = $_GET['bianhao'];
$mingzhi = $_GET['mingzhi'];
//接着就是你的数据库查询
echo $Data;//输出你的数据库查询结果即可
假设你右边是一个div标签,给他设置一个id值,比如id="show"
给查询两个字加一个标签,比如a标签:<a href="#" class="chaxun">查询</a>
然后写jquery的ajax代码:
$('a.chaxun').click(function(){//class=”chaxun"的a标签的点击事件
var bianhao, minzhi;//声明2个变量
biaohao = $('#bianhao').val();//取得文本框id为bianhao的值
mingzhi = $('#mingzi').val();//同理
$('div#show').load('chaxun.php?bianhao=' +bianhao +'&mingzhi=' + mingzhi);
});
最后在你的chaxun.php中,和平时写代码一样就行了
<?php
$bianhao = $_GET['bianhao'];
$mingzhi = $_GET['mingzhi'];
//接着就是你的数据库查询
echo $Data;//输出你的数据库查询结果即可
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询