For links that do not have a URL in the HTML code, their URLs are generated by the front-end JavaScript execution. This is commonly seen in file downloads and multi-resolution images.

HTML code
Click to download
Click to download When the button is pressed, the download address is provided bydata-fileid="filename.zip"of filename.zip It is concatenated, for example, the concatenated address is:http://www.demo.com/files/文件名.zipUsing the code above as an example
.downloadFiledata-fileidhtp://www.demo.com/files/
This type of dynamically generated image sizes using `img:srcset`
Based on different resolutions, JavaScript dynamically loads images of different sizes. The srcset is an array containing the supported image sizes.
The rendered image addresses might be:
Settings like this: Before replacement:/image- After replacement:/image-180.jpg|/image-320.jpg|/image-640.jpg|/image-800.jpg
After replacement, multiple addresses of the parameter are separated by '|'.
http://www.demo.com/files/20220603/image-180.jpg http://www.demo.com/files/20220603/image-320.jpg http://www.demo.com/files/20220603/image-640.jpg http://www.demo.com/files/20220603/image-800.jpg
