Do browsers with JavaScript disabled, disable inline JavaScript?
I want to know if web browsers开发者_运维技巧 with Javascript disabled still allow inline Javascript like the following or if they disable that too.
<p onClick="alert('You just clicked a paragraph element.');">Click Here</p>
If JavaScript is disabled it is disabled everywhere - so the onClick event will not work.
Yes, all JavaScript is disabled.
All JavaScript will be disabled, including inline script.
If you disable javascript after listeners have been established, the functionality may remain
simple answer: YES THEY DO
精彩评论