Home > Web Front-end > JS Tutorial > JS+PHP dynamically add classes

JS+PHP dynamically add classes

php中世界最好的语言
Release: 2018-05-15 16:58:25
Original
1765 people have browsed it

This time I bring you JS PHPDynamic addition of classes, what are the precautions for dynamically adding classes in JS PHP, the following is a practical case, let’s take a look.

1.JAVASCRIPT

a. Code:

var a = function(){
}
var my_a = new a()
my_a.say = function(){
console.log('hello')
}
my_a.say()
Copy after login

b. Output:

hello

2. PHP:

a. Code:

<?php
class a{
}
$a = new a();
$a->say = function(){
echo "hello";
};
$say = $a->say;
$say();
Copy after login

b. Output:

hello

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to write JS when you need to traverse irregular multi-dimensional arrays

How to create a picture carousel in Vue Component (with code)

The above is the detailed content of JS+PHP dynamically add classes. For more information, please follow other related articles on the PHP Chinese website!

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