我在子页面上有这个脚本,它应该将变量和图像传递给父页面。
<script type="text/javascript">
//<![CDATA[
function choose(newValue) {
parent.document.getElementById(location.search.substring(1)).value = newValue;
}
jQuery(window).load(function(){
jQuery(".td-image-finiture").on("click", function(){
var finitura = jQuery(this).children("img").attr("src");
parent.document.getElementById(location.search.substring(1)).src = finitura;
});
});
//]]>
</script>
&#13;
在父页面上我有这段代码:
<a class="cboxElement" href="<?php echo Mage::getUrl('', array('_secure' => Mage::app()->getStore()->isCurrentlySecure())) . $_option->getDescription() ?>?options_<?php echo $_option->getId() ?>_text"><?php echo $this->__('Choose the color') ?></a>
<input id="options_<?php echo $_option->getId() ?>_text" />
<img id="options_<?php echo $_option->getId() ?>_img" src=""/>
目前我无法传递机器人值newValue和finitura,它一次只能传递一个,我应该改变什么?