求救:jsp页面中如何定义和引用变量?
答案:5 悬赏:0 手机版
解决时间 2021-11-26 13:25
- 提问者网友:送舟行
- 2021-11-26 09:27
求救:jsp页面中如何定义和引用变量?
最佳答案
- 五星知识达人网友:千杯敬自由
- 2021-11-26 10:52
<%
String css = "style200810";
%>
或者:
<%
String css = "style200810.css";
%>
这中问题在百度上已经有很多了 ,你静下心来就能找到你想要的答案
全部回答
- 1楼网友:往事埋风中
- 2021-11-26 15:03
<%! %>定义变量
引用变量直接在<%%>中使用就可以
引用变量直接在<%%>中使用就可以
- 2楼网友:笑迎怀羞
- 2021-11-26 14:06
动态获取样式表?
用脚本控制吧。
我写了个简单的例子:
test
link
a.css和b.css放在c:\css\下面,内容如下:
a.css内容
a
{
text-decoration:none;
color:blue;
}
a:hover
{
color:red;
text-decoration:underline;
}
#txt
{
font-color:yellow;
background-color:blue;
}
b.css内容
a
{
text-decoration:underline;
color:yellow;
}
a:hover
{
color:purple;
text-decoration:none;
}
#txt
{
font-color:yellow;
background-color:green;
}
用脚本控制吧。
我写了个简单的例子:
link
a.css和b.css放在c:\css\下面,内容如下:
a.css内容
a
{
text-decoration:none;
color:blue;
}
a:hover
{
color:red;
text-decoration:underline;
}
#txt
{
font-color:yellow;
background-color:blue;
}
b.css内容
a
{
text-decoration:underline;
color:yellow;
}
a:hover
{
color:purple;
text-decoration:none;
}
#txt
{
font-color:yellow;
background-color:green;
}
- 3楼网友:荒野風
- 2021-11-26 13:20
- 4楼网友:由着我着迷
- 2021-11-26 12:24
<%
……
String strCss = null;
……
strCss = ……;
……
%>
……
……
……
……
String strCss = null;
……
strCss = ……;
……
%>
……
……
……
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯