简体   繁体   中英

Can a Page Source include JavaScript contents?

Is there a way to view whole content of javascript file in a normal page source? My javascipt file consists of many links which i want to be visible when i do a normal page source? can anyone please suggest a way how i could achieve it?

Well, for one, you can just embed the script in the page.

Instead of <script src="abc.js"></script> , do:

<script>
//Full contents of abc.js here
</script>

I don't see why you'd want to do that, though. Most developer tools are sufficiently advanced that you get a list of included scripts to inspect on the side (for example, the "sources" tab in the Chrome dev tools)

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