链接到 extern php 文件,其中链接还包含在链接网站上执行的 javascript

发布于 2024-08-31 03:21:23 字数 614 浏览 3 评论 0原文

我有一个没有什么特别的 page_x.php 。我还有一个 page_y.php ,其中包含一个包含下拉字段的表单。

我想放置一个从 page_x.phppage_y.phplink 的链接code> 其链接还将选择下拉列表的第三个值。

我该怎么做?

更新:

关于mplungjan 的回答

我会检查一下。是的,我可以将代码添加到目标文件中。

我也一直在考虑使用 php $_GET 来做到这一点并设置默认值。

我很惊讶(我在 JS 方面不是很有经验),我无法添加为用户选择 ElementById 的 JS/基于浏览器的代码。

I have a page_x.php which is nothing special. I also have a page_y.php with a form containing a dropdown field.

I want to place a link <a href="page_y.php">link</a> from page_x.php to page_y.php whose link will also select the third value of the dropdown.

How do I do this?

Update:

With regard to mplungjan's answer:

I will check that. Yes I can add code to the target-file.

I've also have been thinking about doing that with php $_GET and setting the default value.

I am surprised (am not very experienced in JS) that I could not add a JS/browserbased code which selects the ElementById for the user.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

风筝有风,海豚有海 2024-09-07 03:21:23

仅当您可以使用下拉页在页面上插入脚本时,您才能执行此操作

<a href="pagey.html?2">Load and select the 3rd value</a>

<script type="text/javascript">
window.onload=function() {
  var passed = location.search;
  if (passed) {
    var sel = parseInt(location.search.substring(1));
    document.getElementById('selectID').selectedIndex=sel;
  }
}
</script>
<select id="selectID">...

You can do that only if you can insert a script on the page with the dropdown

<a href="pagey.html?2">Load and select the 3rd value</a>

pagey:

<script type="text/javascript">
window.onload=function() {
  var passed = location.search;
  if (passed) {
    var sel = parseInt(location.search.substring(1));
    document.getElementById('selectID').selectedIndex=sel;
  }
}
</script>
<select id="selectID">...
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文