Executing JavaScript from the address bar causes the browser to exit the page?

前提是你 提交于 2019-12-04 19:31:37

问题


I'm testing a webpage, and I want to execute some JavaScript code from the address bar to change some content (e.g. changing the content of a div) I loaded the webpage and typed in the address bar the following:

javascript:document.getElementById("message").innerHTML="anotherthing"

And, after executing the above code, the browser changes the content of the div, but inmediatly it exits the page.

How can I avoid that behavior?

Thank you.


回答1:


Add a void(0); to the end and it will fix it.




回答2:


One more solution:

javascript: (function(){ /* Your Javascript code goes here */ })();



回答3:


When you copy and paste the javascript: label into some browsers URL bars it automatically removes it. This is a security measure following certain attacks which have occurred in the past whereby people were asked to copy exploitative JavaScript into their URL bars in order for attackers to steal data.

If you want to execute JavaScript like this, you may find that you need to manually type out the javascript: part, otherwise your browser will assume that you're wanting to instead search for document.getElementById(...)....

Example

Copy the following into your address bar:

javascript:alert('hi');

For me, in Chrome on Windows, the javascript: part is removed and instead it assumes I want to search for alert('hi'):

A better solution

Depending on what you're trying to achieve, you'd probably be better off executing JavaScript through your browser's JavaScript console. If you're unsure how to do that, check this out: How to open the JavaScript console in different browsers?




回答4:


Alternative solution: If you don't particularly need it to be the JavaScript that changes the content, if you just need the content of the div changed, then you can use the developer tools in your browser to do that.

In Firefox: Developer Tools > Inspector > right click the HTML and choose "Edit as HTML".

In Chrome: Tools > More Tools > Developer Tools > Elements > right click the HTML and choose "Edit as HTML".

In IE: Developer Tools > HTML > Edit Icon (looks like a piece of paper with a pencil)



来源:https://stackoverflow.com/questions/30077717/executing-javascript-from-the-address-bar-causes-the-browser-to-exit-the-page

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!