您的位置:首页 > 其它

如何将form提交到iframe

2013-12-06 19:47 106 查看


转自:http://gohands.iteye.com/blog/974412

一、<iframe name='w1'></iframe>

<form ... target='w1'>

 

二、父页面中表单提交到iframe后...
我要实现的功能是这样的:

父页面中有一个表单, 表面提交到iframe中,我对iframe页面中的内容进行更改后,怎样才能使父页面中的表单再次提交,从而更新了iframe中的内容

<form target="iframeName "></form>

 

三、

str="select * from client where client_name like '%"&trim(request("client_name"))&"%'"

 

四、<form action="asd.asp" target='showed'> 

..... 

</form> 

<iframe name="showed"></iframe>

五、让竖条没有: 

<body style='overflow:scroll;overflow-y:hidden'> 

</body> 

让横条没有: 

<body style='overflow:scroll;overflow-x:hidden'> 

</body> 

两个都去掉?更简单了 

<body scroll="no"> 

</body>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  iframe 表单
相关文章推荐