简体   繁体   中英

How can I get an object from a json script in JavaScript

I need to use the 'options' object that's in this json script 在此处输入图像描述

is there a way to extract it using jQuery or JavaScript?

Get the innerText of the script tag and then parse the JSON.

var options = JSON.parse(document.querySelector('script[data-drupal-selector="drupal-settings-json"]').innerText);

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM