我有這樣的iframe:更改樣式屬性中單擊
<iframe src="http://www.example.org" frameborder="0" style="top: -100; left: -250; width: 400; height: 590; border: 0; border:none;" scrolling="no" sandbox="allow-controls"></iframe>
我想它會自動更改 到:
<iframe src="http://www.example.org" frameborder="0" style="top: -200; left: -650; width: 950; height: 800; border: 0; border:none;" scrolling="no" sandbox="allow-controls"></iframe>
點擊時。正是基本上我想改變top
,left
,width
和height
屬性。
可能嗎?如果是這樣,怎麼樣?
是有可能使用JavaScript和@niceman你似乎是一個不錯的人點擊事件 – niceman
。你能告訴我如何證明它嗎? – DingDangBang
你只需註冊點擊這裏的事件:https://stackoverflow.com/questions/15080222/add-click-event-to-iframe,點擊事件應改變使用jquery的'.css'的css(jquery是一個庫JavaScript)或使用'.style'屬性在這裏:https://www.w3schools.com/js/js_htmldom_css.asp – niceman