0
下面的代碼示例給出,,如何訪問JSP頁面中腳本標記之外的腳本變量?
<body>
<script type="text/javascript">
var i=123;
alert("Value of i= "+i);
</script>
<!-- I need to access the variable "i" here.
And store it in an integer variable.
-->
</body>
普萊舍幫助。謝謝。
因此,您需要訪問腳本標籤外的JavaScript? – adeneo
可能的重複[參考:爲什麼我的Javascript中的PHP(或其他服務器端)代碼不工作?](http://stackoverflow.com/questions/13840429/reference-why-does-the-php-or-其他服務器端代碼在我的JavaScript的不工作) – Quentin
JSP或JavaScript?似乎你開始混淆事物。 – Raptor