gpt4 book ai didi

javascript - 使用文本框作为值

转载 作者:行者123 更新时间:2023-11-28 00:56:49 25 4
gpt4 key购买 nike

我无法开始工作的最后一件事是使这部分 .namefield.value = 'name'; 基于文本区域。

我尝试将值部分 .value = 'name' 更改为将表单/id 定向到文本区域本身,但这不起作用。

我尝试使用的带有提交按钮的文本区域来自 Dreamweaver;

<form id='input' method='post' action='' >
Name: <input type='text' name='Name' />
<input type='submit' name='submit' value='submit' />
</form>

我正在学习的 html/JavaScript 是:

<html>
<head></head>
<body>
<iframe id="main" width="1000" height="1000" src="main.php"></iframe>
<button id="btnMain">Go</button>
<script>
function load() {
var btn = document.getElementById('btnMain');
btn.onclick = function(){
var ifrm = document.getElementById('main');
ifrm.contentWindow.document.forms['searchForm'].namefield.value = 'name';
};
}
window.onload = load;
</script>
</body>
</html>

在 JSFiddle 中:http://jsfiddle.net/Tim_Holt/0a9krnao/

最佳答案

这是我解决您问题的 fiddle - http://jsfiddle.net/1nqdsyhu/这是 HTML/jQuery 代码片段

HTML

<button id='btnMain'>Enter</button>
<input type='text' name='value instead of 'name'' value='Write your name here' />
<ul>
</ul>

</br>
</br>
The frame wich has the form hasnt been includedbecause i dont know how to, but the form above should be the value instead of the word 'name' shown as value in de javascript, wich at this point will be placed in the iframe form.

jQuery

$(document).ready(function(){
$('#btnMain').on('click', function() {
$('ul').append('<li>' + $('input').val() + '</val>');
});

});

关于javascript - 使用文本框作为值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26128329/

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