If I want to set the src
of iframe with these 3 value. I found:
javascript:
doesn't work in IE10 (error is can't find the page). other mainstream browsers or IE9 is ok.javascript:false
will show afalse
string in the iframe for IE10, others browsers or IE9 is ok.#
works fine in all the browsers.
What is the difference between them? Which one is the best choice for cross-browser issues?