gpt4 book ai didi

javascript - 带有两个选择框、iframe 和 jQuery 的动态页面(不含 PHP)

转载 作者:行者123 更新时间:2023-12-03 07:59:44 25 4
gpt4 key购买 nike

我正在尝试使用 JavaScript 创建动态页面。我使用 jQuery。这个想法是避免使用 PHP 或其他服务器端语言。我使用选择框和 iframe,但不明白为什么它不起作用。 “main.html”显示在代码片段中。这里没有错误,但网页上没有任何变化。目标路径是www/materials/dev1/zad.html(选项1选择在“1”,选项2选择在“zad”。依此类推。它使页面动态。)文件main.html位于在 www/main.html 中。我哪里做错了?
我试图获取 <select>来自不同的类(class),甚至来自 tagName,但我无法做得更好。我认为可能是另一个函数,而不是 click()。你能给我一些有用的建议吗?

$(document).ready(function() {
var aside_val = $('#aside_menu').val();
//get the value of the first selection
var header_val = $('#header_menu').val();
//get the value of the second selection
var folder = 'dev' + aside_val;
//get the value of the folder
$('.selection').click(function() {
$('iframe#content').attr('src', "materials/" + folder + "/" + header_val + ".html");
//change the src attribute of the iframe in order to get the proper page
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<select name="aside_menu" id="aside_menu" tabindex="1" style="top: 20px;" class="selection">
<optgroup label="choose opt">
<option class="opt" value="1">option 1</option>
<option class="opt" value="2">option 2</option>
<option class="opt" value="3">option 3</option>
</optgroup>
</select>
<select name="header_menu" id="header_menu" tabindex="1" class="selection">
<optgroup label="choose opt2">
<option class="opt" value="zad">zad</option>
<option class="opt" value="ooa">ООА</option>
<option class="opt" value="scenario">scenario</option>
<option class="opt" value="hipo">HIPO</option>
<option class="opt" value="functions">functions</option>
</optgroup>
</select>
<iframe src="materials/dev1/zad.html" width="986" height="600" align="center" id="content">no iframe</iframe>

最佳答案

问题在于您仅在页面加载期间初始化单击函数范围之外的变量。这只会设置变量的值一次。您需要在点击处理程序中声明它们。此外,由于 iframe 已经有一个 id,因此您不需要 $('iframe#content')。只需 $('#content') 就足够了。

 $(document).ready(function() {      
//get the value of the folder
$('.selection').click(function() {
var aside_val = $('#aside_menu').val();
//get the value of the first selection
var header_val = $('#header_menu').val();
//get the value of the second selection
var folder = 'dev' + aside_val;
$('#content').attr('src', "materials/" + folder + "/" + header_val + ".html");
});
});

示例:https://jsfiddle.net/DinoMyte/ejxt6y1c/1/

关于javascript - 带有两个选择框、iframe 和 jQuery 的动态页面(不含 PHP),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34645531/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com