ASP代码 如何用数值控制图片的长短

2025-01-05 04:14:34
推荐回答(3个)
回答1:

回答2:

你直接用%比就可以啊
用百分号

回答3:

这个很简单啊,我觉得用js比较方便,asp和js的都给你写了,你加张图片就行了

asp的






<%
if request.Form("text") <> "" then
length = trim(request.Form("text"))
if isnumeric(length) then
response.Write ""
else
response.Write ""
end if
end if
%>

==========================

js的