查看: 695|回复: 5
|
HYPERLINK
[复制链接]
|
|
请问我按了PURCHASE 要LINK去另一页要怎样弄? :@
<tr><td><td>
<td><input type=button Value = Purchase onClick = "gTotal()">
<td>Total
<td><input type=text size=10 name=gtotal>
</tr>
[ 本帖最后由 FieryMan 于 6-2-2006 04:25 PM 编辑 ] |
|
|
|
|
|
|
|
发表于 6-2-2006 04:29 PM
|
显示全部楼层
方不方便吧gTotal()的js function贴上来?
这样很模糊咧 |
|
|
|
|
|
|
|
发表于 6-2-2006 04:34 PM
|
显示全部楼层
- <tr><td><td>
- <td><input type=button Value = Purchase OnClick="location.href='hh.html';">
- <td>Total
- <td><input type=text size=10 name=gtotal>
- </tr>
复制代码
这样 |
|
|
|
|
|
|
|
发表于 6-2-2006 04:52 PM
|
显示全部楼层
- <script>
- function gTotal(){
- bla bla bla...
- }
- </script>
- <form action='address-you-want-to-post.html' method='post' name='form-name'>
- <table>
- <tr><td><td>
- <td><input type=button Value = Purchase onClick = "gTotal()">
- <td>Total
- <td><input type=text size=10 name=gtotal>
- </tr>
- </table>
- </form>
复制代码 |
|
|
|
|
|
|
|
楼主 |
发表于 6-2-2006 07:31 PM
|
显示全部楼层
原帖由 旋转便便 于 6-2-2006 04:29 PM 发表
方不方便吧gTotal()的js function贴上来?
这样很模糊咧
function calc(n){
x = document.purchase;
if ((x.opt[n - 1].checked == true) && (n = 1)) {
x.total1.value = x.qty1.value * x.price1.value;
}
else
{ x.total1.value = 0;
}
if ((x.opt[n - 1].checked == true) && (n = 2)) {
x.total2.value = x.qty2.value * x.price2.value;
}
if ((x.opt[n - 1].checked == true) && (n = 3)) {
x.total3.value = x.qty3.value * x.price3.value;
}
}
function gTotal(){
x = document.purchase;
x.gtotal.value = eval(x.total1.value) +
eval(x.total2.value) +
eval(x.total3.value) +
eval(x.total4.value) +
</script> |
|
|
|
|
|
|
|
发表于 11-2-2006 01:36 AM
|
显示全部楼层
看了你的gtotal function的code以后,猜测你的Purchase button的功能是计算某某(例如购买数量)的Total value,然后输出吧?
如果你要设定按下Purchase后link到另一页只需在gtotal function的最后一行即"}"之前加上“location.href='hh.html';”即可,可是这样的话,用户就看不到输出的Total value了(因为你刚输出Total value就马上转页,用户还没来得及看就已经转页了)
所以,我建议你用另一个button来link去另一页 |
|
|
|
|
|
|
| |
本周最热论坛帖子
|