gpt4 book ai didi

javascript - 使用javascript按下提交按钮

转载 作者:行者123 更新时间:2023-11-30 17:43:59 25 4
gpt4 key购买 nike

其实我有:

<form action="<?php echo $this->getUrl('checkout/cart/estimatePost') ?>" method="post" id="shipping-zip-form" name="shipping-zip-form">
<label for="postcode"<?php if ($this->isZipCodeRequired()) echo ' class="required"' ?>><?php echo $this->__('Zip/Postal Code') ?></label>
<div class="input-box">
<input class="input-text validate-postcode<?php if ($this->isZipCodeRequired()):?> required-entry<?php endif;?>" type="text" id="postcode" name="estimate_postcode" value="<?php echo "04000"; ?>" />
</div>
<div class="buttons-set">
<button type="button" id="send" title="<?php echo $this->__('Get a Quote') ?>" onclick="coShippingMethodForm.submit()" class="button"><span><span><?php echo $this->__('Get a Quote') ?></span></span></button>
</div>
</form>

我试过不成功:

<script type="text/javascript">
document.getElementById('send').submit();
document.forms['shipping-zip-form'].submit();

</script>

我想做的很简单,让javascript自动按下按钮提交表单。我将不再需要提交按钮,我需要自动化按下按钮的过程。谢谢

最佳答案

我猜你的函数没有触发。如果你希望它发生,将它设置为在页面加载时执行。此外,只能提交 <form> 元素,因此尝试定位你的 <button id="send"> 不会工作。

window.onload {
document.getElementById('shipping-zip-form').submit();
}

关于javascript - 使用javascript按下提交按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20484355/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com