请教楼主,这段代码如何改?
页面:http://bbs.5wee.com/portal.php?mod=topic&topicid=1
=================================================
<script type="text/javascript">
function checkCredit(uid) {
var maxCredit = parseInt(0);
var idval = parseInt($(id).value);
if(/^(\d+)$/.test(idval) == false) {
showDialog('你所填写的维币不是一个合法数值', 'notice', '提示信息', null, 0);
return false;
} else if(idval > maxCredit) {
showDialog('你的当前维币为 0,请填写一个小于该值的数字', 'notice', '提示信息', null, 0);
return false;
} else if(idval < 1) {
showDialog('你所填写的维币不能小于1', 'notice', '提示信息', null, 0);
return false;
}
if(id == 'showcredit') {
var price = parseInt($('unitprice').value);
if(/^(\d+)$/.test(price) == false) {
showDialog('您所填写的单价不是一个合法数值', 'notice', '提示信息', null, 0);
return false;
} else if(price < 1) {
showDialog('您所填写的单价不能小于1', 'notice', '提示信息', null, 0);
return false;
} else if(price > idval+parseInt(0)) {
showDialog('您所填写的单价不能高于竞价总额', 'notice', '提示信息', null, 0);
return false;
}
}
return true;
}
</script>
<div class="tbmu">
<h3 class="mbn">排行榜公告:</h3>
你现在还没有上榜。让自己上榜吧,这会大大提升你的主页曝光率。
<br>竞价单价越多,竞价排名越靠前,你的主页曝光率也会越高;
<br>上榜用户的主页被别人有效浏览一次,将从竞价维币中扣除您设定的竞价值(恶意刷新访问不扣减)。
</div>
<div class="tbmu mbm pbw cl">
<form method="post" autocomplete="off" action="home.php?mod=spacecp&ac=top" onsubmit="return checkCredit('showcredit');" class="z">
<table>
<caption><h3 class="mbn">我也要上榜</h3></caption>
<tbody><tr>
<th class="pbn">
我的上榜宣言
<p class="xg1">最多50个汉字,会显示在榜单中</p>
</th>
<th class="pbn">
竞价单价
<p class="xg1"><a href="http://bbs.5wee.com/home.php?mod=spacecp&ac=common&op=modifyunitprice" id="a_modify_unitprice" onclick="showWindow(this.id, this.href, 'get', 0);">(修改单价)</a></p>
</th>
<th class="pbn">
增加竞价维币<p class="xg1">不要超过自己的维币 0 元</p>
</th>
</tr>
<tr>
<td><input name="note" class="px" value="" size="25" type="text"></td>
<td>
<input id="unitprice" name="unitprice" class="px vm" value="1" size="7" onblur="checkCredit('showcredit');" type="text">
</td>
<td>
<input id="showcredit" name="showcredit" class="px vm" value="100" size="7" onblur="checkCredit('showcredit');" type="text">
<button type="submit" name="show_submit" class="pn vm"><em>增加</em></button>
</td>
</tr>
</tbody></table>
<input name="showsubmit" value="true" type="hidden">
<input name="formhash" value="c4168e53" type="hidden">
</form>
<form method="post" autocomplete="off" action="home.php?mod=spacecp&ac=top" onsubmit="return checkCredit('stakecredit');" class="y">
<table>
<caption><h3 class="mbn">帮助好友来上榜</h3></caption>
<tbody><tr>
<td class="pbn">
要帮助的好友
<p class="xg1">请输入好友的用户名</p>
</td>
<td class="pbn">
赠送竞价维币<p class="xg1">不要超过自己的维币 0 元</p>
</td>
</tr>
<tr>
<td><input name="fusername" class="px" value="" size="15" type="text"></td>
<td>
<input name="stakecredit" id="stakecredit" class="px vm" value="20" size="7" onblur="checkCredit('stakecredit');" type="text">
<button type="submit" name="friend_submit" class="pn vm"><em>赠送</em></button>
</td>
</tr>
</tbody></table>
<input name="friendsubmit" value="true" type="hidden">
<input name="formhash" value="c4168e53" type="hidden">
</form>
</div> |