json返回的数据,前台php如何赋值

WBOY
Release: 2016-06-06 20:42:43
Original
981 people have browsed it

json返回的数据,前台php如何赋值

如图,js中直接用v.url这种格式调用
现在由于业务需要,需要从返回的值中判断v.id大小并且输出相应不同内容,
我首先想到的就是<?php if(xxx)?>,但是v.id在php里如何调用呢

回复内容:

json返回的数据,前台php如何赋值

如图,js中直接用v.url这种格式调用
现在由于业务需要,需要从返回的值中判断v.id大小并且输出相应不同内容,
我首先想到的就是<?php if(xxx)?>,但是v.id在php里如何调用呢

PHP 是服务端的语言,JSON 值返回来的时候已经返回到客户端了,与 PHP 已经没有关系了。

这种情况下你应该使用 JavaScript 操作 DOM 来实现你的页面变化,也可以用 jQuery 等库来简化代码。

这里肯定不能用 PHP 来判断啊。你可以用 JS 判断大小啊。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template