我需要更改父iframe中div的backgroundImage。
我可以做到,但不是有用的,我需要从按钮发送变量。
目前我在脚本中有变量。
angular.module('testApp').config(function ($urlRouterProvider, $stateProvider) {
$urlRouterProvider.otherwise('/')
$stateProvider
.state('main', {
url: '/',
templateUrl: '/views/main.html'
})
.state('register', {
url: '/register',
templateUrl: '/views/register.html',
controller: 'RegisterCtrl'
});
})
我需要从按钮发送图像网址,而不是在脚本中显示它。
我试过这个并没有用。
<script>
function myFunction() {
window.parent.document.getElementById('seekerBase').style.backgroundImage = "url('http://www.floom.com/images/waveform_lotos.gif')";
}
</script>
<button type="button" onclick="myFunction()">Get the background image of div</button>
感谢您的帮助。 我是新手。
答案 0 :(得分:4)
传递给using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.Xml.Linq;
namespace ConsoleApplication1
{
class Program
{
static List<Day> days = new List<Day>();
static void Main(string[] args)
{
}
}
public class Day
{
int day { get; set; }
int housesBought { get; set; }
int money { get; set; }
List<Day> nextDay = new List<Day>();
}
}
的背景图片网址http://www.floom.com/images/waveform_lotos.gif
基本上是该函数的参数。有关 JavaScript函数的更多信息,请参阅Mozilla/Functions
试试这个!
myFunction(bgImgUrl)
希望它有所帮助!