供我使用
<a href= pag.php ><input type= button value= Next /></a>
in firefox and crome when i click on the button i m redirected to pag.php but in ie it don t work. how can i do?
供我使用
<a href= pag.php ><input type= button value= Next /></a>
in firefox and crome when i click on the button i m redirected to pag.php but in ie it don t work. how can i do?
简单的方式是:
<input type= button value= Next onclick="location.href= pag.php "/>
表格加吨用于向以下条目中规定的网页提交表格:<编码>action>属性,不填入<a>
tags, 系坏辛加。 如果是多部分形式,则只增加action/code>的属性:
<form>
<form method="POST" action="pag.php">
<!-- your form elements -->
<input type="submit" value="Next">
</form>
该表将提交<代码>pag.php。 否则,只是使用一种联系,或者,如果你坚持把这种联系看上去,则使用像以下这样的图像链接:
<a href="pag.php"><img src="image_that_looks_like_a_button.png"></a>
希望这一帮助。
不是你现在做的事,而是:
<form action="pag.php" method="post" enctype="multipart/form-data">
<INPUT TYPE="submit" name="Submit" value="Next">
</form>
但是,如果你想要取代纽顿的形象,那么:
<INPUT TYPE="image" SRC="image location" ALT="Next">
希望解决你们的问题!
I am trying to create a search text-field like on the Apple website. The HTML looks like this: <div class="frm-search"> <div> <input class="btn" type="image" src="http://www....
I have a div <div id="masterdiv"> which has several child <div>s. Example: <div id="masterdiv"> <div id="childdiv1" /> <div id="childdiv2" /> <div id="...
I m writing a php script to crop an image. The script overwrites the old image with the new one, but when I reload the page (which is supposed to pickup the new image) I still see the old one. ...
<form><input type="file" name="first" onchange="jsFunction(2);"> <input type="file" name="second" onchange="jsFunction(3);"</form> Possible to pass just numbers to the js ...
So I ve got a menu with a hover/selected state and it loads fine in IE6/IE7. However when I scroll down the page and put the element outside of the viewport and then back in I get a broken image! I ...
I am building some basic HTML code for a CMS. One of the page-related options in the CMS is "background image" and "stretch page width / height to background image width / height." so that with large ...
Is it possible to reload a form after file-input change? I have a form where the user can chose an image for upload. I also have a php script which displays that image resized. I only wonder if it ...
I d like to add a simple separator line in an aspx web form. Does anyone know how? It sounds easy enough, but still I can t manage to find how to do it.. 10x!