php处理完的数据打包传给html,怎么传script过去?
如题。我在html页面用了js,给php传值,php经过数据库查询操作之后把结果排好样式,打包成$content这样写进传回给html的<div>显示。但是每当在$con...
如题。我在html页面用了js,给php传值,php经过数据库查询操作之后把结果排好样式,打包成$content这样写进传回给html的<div>显示。但是每当在$content加入js语句就不能显示结果。。。。。可是我需要在这里$html里面js怎么办啊。。。
部分源码:
html:
HTML code
$.post("result.php", { "p":p },function(data){
str = data;
document.getElementById("resText1").innerHTML = str;
});
php:
PHP code
while($row = mysql_fetch_array($res)){
$content .= "
<div class='t_area_out item' style='border-width:2px;'>
<div class='t_area_in'>
<table class='at_jrat'>
<tbody>
<tr>
<td>
<div class='at_jrat_title'>
<a href='?view=".$row['id']."'>".$row['name']."</a>
</div>
</td>
</tr>
</tbody>
</table>
<div class='t_deal_r'>
<div class='t_deal_r_img'>
<a href='?view=".$row['id']."'><img src='".$row['url']."'/></a>
</div>
</div>
<div style='position: relative;' class='t_deal'>
<div class='t_deal_l'>
<div class='at_buy'>
<div class='price'>¥".$row['nowprice']. "</div>
<div class='deal_b'>
<a href='?view=".$row['id']."' style='width:100px; height:100px; display: block;'></a>
</div>
</div>
<div class='at_shuzi'>
<ul>
<li><span>原价</span><b class='prime_cost '>¥".$row['price']."</b></li>
<li><span>折扣</span><b>".$row['price']."折</b></li>
<li><span>节省</span><b>¥".($row['price']-$row['nowprice'])."</b></li>
</ul>
</div>
</div>
<div class='mb_0624'>
<div class='deal_djs' id='remainTime_".$row['id']."'>
<script>alert('good');</script>
</div>
</div>
<div id='tuanState' class='mb_0626'><b>".$row['nowprice']."</b>人已购买</div>
</div>
</div>
<div style='clear: both; height: 0px;'>
</div>
</div>
"
;
注意:这里的<script>alert()</script>这样写进$content是显示不出来的,有什么方法么?各位老大 展开
部分源码:
html:
HTML code
$.post("result.php", { "p":p },function(data){
str = data;
document.getElementById("resText1").innerHTML = str;
});
php:
PHP code
while($row = mysql_fetch_array($res)){
$content .= "
<div class='t_area_out item' style='border-width:2px;'>
<div class='t_area_in'>
<table class='at_jrat'>
<tbody>
<tr>
<td>
<div class='at_jrat_title'>
<a href='?view=".$row['id']."'>".$row['name']."</a>
</div>
</td>
</tr>
</tbody>
</table>
<div class='t_deal_r'>
<div class='t_deal_r_img'>
<a href='?view=".$row['id']."'><img src='".$row['url']."'/></a>
</div>
</div>
<div style='position: relative;' class='t_deal'>
<div class='t_deal_l'>
<div class='at_buy'>
<div class='price'>¥".$row['nowprice']. "</div>
<div class='deal_b'>
<a href='?view=".$row['id']."' style='width:100px; height:100px; display: block;'></a>
</div>
</div>
<div class='at_shuzi'>
<ul>
<li><span>原价</span><b class='prime_cost '>¥".$row['price']."</b></li>
<li><span>折扣</span><b>".$row['price']."折</b></li>
<li><span>节省</span><b>¥".($row['price']-$row['nowprice'])."</b></li>
</ul>
</div>
</div>
<div class='mb_0624'>
<div class='deal_djs' id='remainTime_".$row['id']."'>
<script>alert('good');</script>
</div>
</div>
<div id='tuanState' class='mb_0626'><b>".$row['nowprice']."</b>人已购买</div>
</div>
</div>
<div style='clear: both; height: 0px;'>
</div>
</div>
"
;
注意:这里的<script>alert()</script>这样写进$content是显示不出来的,有什么方法么?各位老大 展开
5个回答
展开全部
我也不清楚虚运戚你上面alert代码是起什么作用的,关键一点是:innerHTML写入的就必须是html片段,里面的js脚本不会起作用,如果想差陵直接执行服务器端js脚本,应该使用eval函数。揣测了一下你的代码意图,改成这样,你参考悄笑一下:
$.post("result.php", { "p":p },function(data){
str = data;
$("#resText1").innerHTML = str;
$("#resText1").find('.deal_djs').each(function() {
alert('good');
});
});
$.post("result.php", { "p":p },function(data){
str = data;
$("#resText1").innerHTML = str;
$("#resText1").find('.deal_djs').each(function() {
alert('good');
});
});
展开全部
没看懂你那JS是干啥的 你那PHP文件也很无厘头
追问
你好。请问那部分看不懂呢?
追答
不知道你要干啥
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要使用两绝卖个文件,一个是PHP文件,一个是写有js的HTML文件
JS:
location.href='a.php?a='+a;
PHP:
$a = $_GET['a'];
如果想在同一个运闹页面完成可以使用iframe实现.
当然ajax也是并悄逗一种解决方案
JS:
location.href='a.php?a='+a;
PHP:
$a = $_GET['a'];
如果想在同一个运闹页面完成可以使用iframe实现.
当然ajax也是并悄逗一种解决方案
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
要使用两绝卖个文件,一个是PHP文件,一个是写有js的HTML文件
JS:
location.href='a.php?a='+a;
PHP:
$a = $_GET['a'];
如果想在同一个运闹页面完成可以使用iframe实现.
当然ajax也是并悄逗一种解决方案
JS:
location.href='a.php?a='+a;
PHP:
$a = $_GET['a'];
如果想在同一个运闹页面完成可以使用iframe实现.
当然ajax也是并悄逗一种解决方案
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
用定界符念胡态
$a=<<<eof
<script>
alert('仔源ni hao');
</script>做或
eof;
$a=<<<eof
<script>
alert('仔源ni hao');
</script>做或
eof;
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询