Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は本当にJavascriptを理解していません。
PHP では、次のように引用符を削除できます。
$tags_array = preg_replace('/"/', '', $tags_array);
Javascriptでどうやって書くの?
str = str.replace(/"/g, '');
PHPで行うこととほぼ同じことをjavascriptで行うことができます。つまり、多くの機能を意味します。ここに解決策があります:
PHPJS