我对使用 javascript 相当陌生,这是我目前所拥有的:
<!-- this is to disable the submit button and then re-enable it after 3 sec -->
<script type="text/javascript">
function enable()
{
var x = document.LAYOUTFORM.getElementById("create_button");
setTimeout(x.removeAttribute("disabled"), 3000);
}
</script>
对于按钮,我有这个:
<INPUT TYPE="SUBMIT" VALUE=" Create PDF " class="FORMBUTTON" ID="create_button" onclick="javascript:this.disabled=true;javascript:enable();">
我已经搞砸了几个小时,你们中的大多数人都会看到它并立即知道出了什么问题。我的表单 ID 和名称是 LAYOUTFORM。谁能告诉我我在这里做错了什么?
对于奖励积分,我还希望按钮的文本在禁用时暂时更改为“正在创建...”,然后再次返回创建 PDF。