根据url中的变量动态设置嵌入式iframe src

时间:2017-11-06 16:26:11

标签: iframe

我想根据网站网址中的参数动态设置我的iframe的src。

示例:

  • www.example.com?source=random

    iframe应加载iframe 1

  • www.example.com?source=evenmorerandom

    iframe应加载iframe 2

有人可以帮我找到正确的代码吗? 谢谢你的帮助!

罗布

1 个答案:

答案 0 :(得分:0)

如果www.example.com是PHP页面:

Drupal.behaviors.form_cuentacorriente = {
    attach: function (context, settings) {

  $('input[type=checkbox]').click(function(){
    var tabla = $("#conceptos")[0];
    var long = tabla.rows.length;
    var pos = $(this).closest("tr").index();

    if (!this.checked){
    for (i = pos+1; i < long +1; i++) {     
    $(tabla.rows[i]).find( 'input' ).prop('disabled', 
    !this.checked).prop('checked', false);
    }
    }else{
    $(this).closest("tr").next().find("input")
      .prop('disabled', !this.checked);
    }  
  });    

}