我有一个奇怪的问题!我的提交按钮不响应操作!!!
我有这个代码:
<script type="text/javascript">
function save_contact_information() {
document.getElementById('User_Finder').action = "Controler/controller_page.php?button=save_contact_information";
}
</script>
<form id="User_Finder" action="User_Finder.php?ID_CV_User=<?php print $ID_CV_User ?>&&change_profile=ok"
method="post" enctype="multipart/form-data">
<input type="submit" id="CI_BT_Save" onclick="save_contact_information()"
name="BT_PI_Save" value="Save" style="position:absolute;left:12px;top:333px;width:96px;height:25px;z-index:342;">
</form>
如果我点击按钮保存,什么都不会改变!!!我将函数“save_contact_information()”的代码更改如下:
function save_contact_information() {
alert("ok1");
document.getElementById('User_Finder').action = "Controler/controller_page.php?button=save_contact_information";
alert("ok2");
}
现在,如果我单击按钮保存,将显示 2 个警报:ok1 + ok2 但这一行:
document.getElementById('User_Finder').action ="Controler/controller_page.php?button=save_contact_information";
没有给出任何反应!
有没有人知道这个奇怪的问题!