0
因此,我想知道如何將此示例中的目標「google-iframe」添加到iframe的源鏈接中。如何將目標添加到src引號末尾
下面是當前代碼我有:
<!-- CSS -->
<style>
body {
color: purple;
background-color: #663300 }
</style>
<form target="google-iframe">
<input id="search" type="text"/>
<input type="image" onclick="google-iframe" src="Searchbutton.png" alt="Search Button" height="20" width="20">
<iframe id="google-iframe" src="http://www.google.com/custom?q=" width="250" height="600" onmouseover="width=400" onmouseout="width=250" onclick="window.location='http://www.google.com/custom?q=Test&btnG=Search'"></iframe>
</form>
我想擁有它是這樣的:
<iframe id="google-iframe" src="http://www.google.com/custom?q=" + "google-iframe" width="250" height="600" onmouseover="width=400" onmouseout="width=250" onclick="window.location='http://www.google.com/custom?q=Test&btnG=Search'"></iframe>
的變化是它說
src=http://www.google.com/custome?q=
那什麼被定義爲「google-iframe」將被插入到src的末尾,例如
src=http://www.google.com/custome?q=WhatEverIsEntedInTheGoogle-Iframe
非常感謝!正是我在找什麼,並節省了我噸的時間:) – Ibounes
雖然我怎麼會一次搜索多個iframe?就像我想要搜索相同的東西,但可以在wiki和diction iframe上說,但所有關閉的同一個搜索欄。 – Ibounes
@Ibounes然後你將不得不使用JS提交到多個目標。 –