0

我有以下脚本可以同时触发两个函数。一个函数应调用/加载 php 文件(index.php 以查询 mysql),另一个应运行 javascript。这甚至可能吗?提前感谢您的帮助。

$.get("index.php", {id : searchform, name : tweetfinder}, function() {
// Here you can do the other operations
onclick("submit");
$('searchform').submit();
});
</script>
<form id="searchform" name="tweetfinder">
<div class="input-append">
<input class="span3" autofocus="autofocus">
<button class="btn btn-primary">Do Stuff!</button>
</div></form>

这种方法怎么样(输入 mysql 查询作为函数?):

function showstuff(){
<?php
$get = mysql_query("SELECT * FROM `xxx` WHERE `xxx` = '$xxx' ORDER BY `rank` DESC")or die(mysql_error());
while($ass = mysql_fetch_assoc($get)){
$viewer = $ass['playername'];
echo "<a href=\"index.php?viewuser=".$viewer."\">".$viewer."</a> , ";
};
4

1 回答 1

0

如果你愿意你的 AJAX (jQuery) 那么我想建议。你做什么,使用 AJAX 调用获取另一个文件的数据,并在其回调中执行其他操作。

$.get("index.php", {id : 5, name : MyName}, function() {
  // Here you can do the other operations
  alert('Do more things');
  $('formID').submit();
});

有关更多详细信息,请参阅此处

于 2013-02-14T12:16:33.153 回答