2014-03-02 48 views

回答

0

由於Rahul是一個普通的String你想/需要把它作爲參數,你應該用引號(「)通過使用反斜線(\)字符轉義:

<% out.print("<button onclick='f1(\"Rahul\")'>Click me</button>"); %> 
            ^escape the quote 

不過,因爲你在JSP中是已經,你不需要寫小腳本里面的HTML代碼,這樣你就可以將其更改爲:

<% 
    ...whatever code is here, probably a loop (very strange, indeed) 
%> 
    <button onclick='f1("Rahul")'>Click me</button> 
<% 
    rest of your scriptlet code... 
%> 
0

您可以使用轉義序列(\)做這樣的工作! 試試這個:

<% out.print("<button onclick='f1(\"Rahul\")'>Click me</button>"); %> 
+0

非常非常感謝你的兄弟 – RahulGoel

+0

請接受答案和最高票!讓其他人可以輕鬆找到它! – DDC

相關問題